Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

minimum version is Python 3.10 #35

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
max-parallel: 4
matrix:
os: [ "ubuntu-latest", "windows-latest" ]
python-version: [ "3.8" ]
python-version: [ "3.10", "3.13" ]
steps:
- uses: actions/checkout@v3

Expand Down
10 changes: 8 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,20 @@
* Minor releases (X.1.X) are new features such as added functions or small changes that don't cause major compatibility issues.
* Major releases (1.X.X) are major new features or changes that break backward compatibility in a big way.

## [Latest](https://github.com/int-brain-lab/iblutil/commits/main) [1.14.0]
## [Latest](https://github.com/int-brain-lab/iblutil/commits/main) [1.15.0]

### Modified
- upgrade minimum supported Python version to 3.10
- io.params.read returns the json file name if a decoding error occurs

## [1.14.0]

### Added

- io.jsonable.load_task_jsonable: read and format iblrig raw data to a trials table Dataframe and a list of raw Bpod trials
- util.Listable: returns a typing class that is the union of input class and a sequence thereof

## [Latest](https://github.com/int-brain-lab/iblutil/commits/main) [1.13.0]
## [1.13.0]

### Added

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
![CI workflow](https://github.com/int-brain-lab/iblrplate/actions/workflows/main.yaml/badge.svg?branch=main)
[![Coverage Status](https://coveralls.io/repos/github/int-brain-lab/iblrplate/badge.svg?branch=main)](https://coveralls.io/github/int-brain-lab/iblrplate?branch=main)

Small utilities with minimal dependencies, tests run on Python v3.8
Small utilities with minimal dependencies, tests run on Python 3.10 and 3.13
2 changes: 1 addition & 1 deletion iblutil/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '1.14.0'
__version__ = '1.15.0'
1 change: 0 additions & 1 deletion iblutil/tests/test_net.py
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,6 @@ def tearDown(self):
self.server.close()


@unittest.skipIf(ver < Version('3.9'), 'only version 3.9 or later supported')
class TestWebSockets(unittest.IsolatedAsyncioTestCase):
"""Test net.app.EchoProtocol with a TCP/IP transport layer"""

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
CURRENT_DIRECTORY = Path(__file__).parent.absolute()

CURRENT_PYTHON = sys.version_info[:2]
REQUIRED_PYTHON = (3, 8)
REQUIRED_PYTHON = (3, 10)
VER_ERR_MSG = """
==========================
Unsupported Python version
Expand Down
Loading