Skip to content

Commit d8a13e7

Browse files
authored
1 parent 83602f6 commit d8a13e7

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Setup Python
2424
uses: actions/setup-python@v5
2525
with:
26-
python-version: 3.9
26+
python-version: "3.10"
2727
cache: 'pip'
2828
cache-dependency-path: pyproject.toml
2929

@@ -44,7 +44,7 @@ jobs:
4444
- name: Setup Python
4545
uses: actions/setup-python@v5
4646
with:
47-
python-version: 3.9
47+
python-version: "3.10"
4848

4949
- name: Install Python packages
5050
run: |
@@ -68,7 +68,7 @@ jobs:
6868
fail-fast: false
6969
matrix:
7070
os: [ ubuntu-22.04, macos-12, windows-2022 ]
71-
python: [ 3.9, "3.10", "3.11", "3.12" ]
71+
python: [ "3.10", "3.11", "3.12" ]
7272
env:
7373
GCC_V: 11
7474
steps:

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,12 @@ classifiers = [
2828
"Intended Audience :: Science/Research",
2929
"License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication",
3030
"Programming Language :: Python :: 3 :: Only",
31-
"Programming Language :: Python :: 3.9",
3231
"Programming Language :: Python :: 3.10",
3332
"Programming Language :: Python :: 3.11",
3433
"Programming Language :: Python :: 3.12",
3534
"Topic :: Scientific/Engineering :: Hydrology",
3635
]
37-
requires-python = ">=3.9"
36+
requires-python = ">=3.10"
3837
dependencies = [
3938
"attrs", # todo: bounds?
4039
"cattrs", # todo: bounds?

0 commit comments

Comments
 (0)