Skip to content

Commit

Permalink
Add tests on Python 3.13 (#457)
Browse files Browse the repository at this point in the history
* Add tests on Python 3.13

* Remove support for Python 3.9

* Bump scipy

* Bump Python to 3.10
  • Loading branch information
cbrnr authored Dec 6, 2024
1 parent 39952bf commit 956ad19
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
needs: style
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12']
python-version: ['3.10', '3.11', '3.12', '3.13']
name: Run tests (Python ${{ matrix.python-version }})
runs-on: ubuntu-24.04
steps:
Expand Down
5 changes: 2 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,11 @@ authors = [
{name = "Clemens Brunner", email = "[email protected]"},
]
readme = "README.md"
requires-python = ">=3.9"
requires-python = ">=3.10"
classifiers = [
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
Expand All @@ -28,7 +27,7 @@ dependencies = [
"edfio >= 0.4.2",
"matplotlib >= 3.8.0",
"numpy >= 2.0.0",
"scipy >= 1.10.0",
"scipy >= 1.14.1",
"pybv >= 0.7.4",
"pyxdf >= 1.16.4",
"pyobjc-framework-Cocoa >= 10.0; platform_system=='Darwin'",
Expand Down

0 comments on commit 956ad19

Please sign in to comment.