Skip to content

Commit 6722f95

Browse files
committed
drop support for Python 3.9
1 parent efd1a4e commit 6722f95

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
fail-fast: false
1616
matrix:
17-
py: ['3.9', '3.10', '3.11', '3.12']
17+
py: ['3.10', '3.11', '3.12']
1818
env:
1919
UV_PYTHON: ${{ matrix.py }}
2020

pyproject.toml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,19 +22,18 @@ classifiers = [
2222
"Intended Audience :: Science/Research",
2323
"License :: OSI Approved :: Apache Software License",
2424
"Programming Language :: Python :: 3 :: Only",
25-
"Programming Language :: Python :: 3.9",
2625
"Programming Language :: Python :: 3.10",
2726
"Programming Language :: Python :: 3.11",
2827
"Programming Language :: Python :: 3.12",
2928
]
30-
requires-python = ">=3.9"
29+
requires-python = ">=3.10"
3130
dependencies = [
3231
"loam~=0.8.0",
3332
"f90nml>=1.4.4",
34-
"numpy~=2.0",
35-
"scipy~=1.13",
33+
"numpy~=2.1",
34+
"scipy~=1.14",
3635
"pandas~=2.2",
37-
"h5py~=3.11",
36+
"h5py~=3.12",
3837
"matplotlib~=3.9",
3938
]
4039

@@ -65,6 +64,6 @@ dev-dependencies = [
6564
"pytest>=8.3.2",
6665
"pytest-cov>=5.0.0",
6766
"mypy>=1.11.2",
68-
"ruff>=0.6.2",
69-
"pandas-stubs>=2.2.2.240807",
67+
"ruff>=0.6.9",
68+
"pandas-stubs>=2.2.3.241003",
7069
]

0 commit comments

Comments
 (0)