Skip to content

Commit 08fcee6

Browse files
drop python 3.9 support and fix pyproject toml
1 parent e4da4a9 commit 08fcee6

2 files changed

Lines changed: 3 additions & 5 deletions

File tree

.github/workflows/testing.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
pytest-with-nbmake:
1111
strategy:
1212
matrix:
13-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
13+
python-version: ["3.10", "3.11", "3.12", "3.13"]
1414
runs-on: ubuntu-latest
1515
timeout-minutes: 30
1616
steps:

pyproject.toml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ classifiers = [
2424
"Programming Language :: Python",
2525
"Programming Language :: Python :: 3",
2626
"Programming Language :: Python :: 3 :: Only",
27-
"Programming Language :: Python :: 3.9",
2827
"Programming Language :: Python :: 3.10",
2928
"Programming Language :: Python :: 3.11",
3029
"Programming Language :: Python :: 3.12",
@@ -33,7 +32,7 @@ classifiers = [
3332
"Topic :: Scientific/Engineering :: Physics",
3433
"Typing :: Typed",
3534
]
36-
requires-python = ">= 3.9"
35+
requires-python = ">= 3.10"
3736
dependencies = [
3837
"numpy >= 2.0",
3938
"numba >= 0.60",
@@ -47,7 +46,6 @@ dependencies = [
4746
tests = [
4847
"pytest >= 8.0",
4948
"nbmake >= 1.3",
50-
"rydstate[comparison]",
5149
]
5250
docs = [
5351
"sphinx >= 7",
@@ -72,7 +70,7 @@ mypy = [
7270

7371
[dependency-groups]
7472
dev = [
75-
"rydstate[docs,tests,comparison,jupyter,mypy]",
73+
"rydstate[docs,tests,jupyter,mypy]",
7674
"check-wheel-contents >= 0.6",
7775
]
7876

0 commit comments

Comments
 (0)