Skip to content

Commit 2a24a39

Browse files
committed
update ci for python 3.13 and 3.14 support
* add Python 3.13 and 3.14 to test matrix * bump actions/checkout and actions/setup-python
1 parent 2434b8d commit 2a24a39

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ jobs:
2020
strategy:
2121
matrix:
2222
os: [ubuntu-latest, macos-latest, windows-latest]
23-
python-version: ["3.10", "3.11", "3.12"]
23+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
2424

2525
steps:
26-
- uses: actions/checkout@v4
26+
- uses: actions/checkout@v6
2727
- name: Use Python ${{ matrix.python-version }}
28-
uses: actions/setup-python@v5
28+
uses: actions/setup-python@v6
2929
with:
3030
python-version: ${{ matrix.python-version }}
3131

pyproject.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ classifiers = [
2121
"Programming Language :: Python :: 3.10",
2222
"Programming Language :: Python :: 3.11",
2323
"Programming Language :: Python :: 3.12",
24+
"Programming Language :: Python :: 3.13",
25+
"Programming Language :: Python :: 3.14",
2426
"Programming Language :: Python :: Implementation :: CPython",
2527
"Topic :: Scientific/Engineering :: Hydrology",
2628
"Topic :: Scientific/Engineering :: Physics",

0 commit comments

Comments
 (0)