Skip to content

Commit 742dcfa

Browse files
authored
Merge pull request #68 from mcflugen/mcflugen/update-python-in-ci
Update the CI for python 3.13 and 3.14
2 parents cb839fe + 9e3bd31 commit 742dcfa

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/test.yml

Lines changed: 6 additions & 8 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

@@ -35,9 +35,7 @@ jobs:
3535
pip install nox
3636
nox -s test
3737
38-
- name: Coveralls
39-
if: matrix.os == 'ubuntu-latest'
40-
uses: AndreMiras/coveralls-python-action@develop
38+
- name: Upload coverage reports to Codecov
39+
uses: codecov/codecov-action@v5
4140
with:
42-
parallel: true
43-
flag-name: py${{ matrix.python-version }}-${{ matrix.os }}
41+
token: ${{ secrets.CODECOV_TOKEN }}

pyproject.toml

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

0 commit comments

Comments
 (0)