Skip to content

Commit

Permalink
Bump python version to >= 3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
k1o0 committed Oct 24, 2024
1 parent c83b7e6 commit 42cf950
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
fail-fast: false # Whether to stop execution of other instances
max-parallel: 2
matrix:
python-version: ["3.8", "3.11"]
python-version: ["3.10", "3.13"]
os: ["ubuntu-latest", "windows-latest"] # , "macos-latest"
steps:
- uses: actions/checkout@v2
Expand Down
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog
## [Latest](https://github.com/int-brain-lab/ONE/commits/main) [2.10.0]
## [Latest](https://github.com/int-brain-lab/ONE/commits/main) [3.0.0]
This version drops support for python 3.9 and below, and ONE is now in remote mode by default.

### Modified

- Supports python >= 3.10 only

## [2.10.0]
This version improves behaviour of loading revisions and loading datasets from list_datasets output.

### Modified
Expand Down
2 changes: 1 addition & 1 deletion one/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
"""The Open Neurophysiology Environment (ONE) API."""
__version__ = '2.10.0'
__version__ = '3.0.0'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
CURRENT_DIRECTORY = Path(__file__).parent.absolute()

CURRENT_PYTHON = sys.version_info[:2]
REQUIRED_PYTHON = (3, 7)
REQUIRED_PYTHON = (3, 10)
if CURRENT_PYTHON < REQUIRED_PYTHON:
sys.stderr.write("""
==========================
Expand Down

0 comments on commit 42cf950

Please sign in to comment.