Skip to content

Commit eb20436

Browse files
mark Python 3.13 support (#1785)
1 parent 0d14640 commit eb20436

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,14 @@ jobs:
2424
fail-fast: false
2525
matrix:
2626
os: [macos, ubuntu, windows]
27-
python-version: ["3.12"]
27+
python-version: ["3.13"]
2828
include:
2929
- os: ubuntu
3030
python-version: "3.10"
3131
- os: ubuntu
3232
python-version: "3.11"
33+
- os: ubuntu
34+
python-version: "3.12"
3335
steps:
3436
- name: Checkout
3537
uses: actions/checkout@v4
@@ -46,7 +48,7 @@ jobs:
4648
uses: codecov/[email protected]
4749
env:
4850
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
49-
if: matrix.python-version == '3.12'
51+
if: matrix.python-version == '3.13'
5052
with:
5153
flags: unit-tests
5254
- name: Upload test results
@@ -62,7 +64,7 @@ jobs:
6264
fail-fast: false
6365
matrix:
6466
os: [macos, ubuntu, windows]
65-
python-version: ["3.12"]
67+
python-version: ["3.13"]
6668
include:
6769
- os: ubuntu
6870
python-version: "3.10"

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ classifiers = [
1515
"Programming Language :: Python :: 3.10",
1616
"Programming Language :: Python :: 3.11",
1717
"Programming Language :: Python :: 3.12",
18+
"Programming Language :: Python :: 3.13",
1819
"Operating System :: OS Independent",
1920
"Topic :: Scientific/Engineering",
2021
"Intended Audience :: Science/Research",

0 commit comments

Comments
 (0)