Skip to content

Commit

Permalink
mark Python 3.13 support (#1785)
Browse files Browse the repository at this point in the history
  • Loading branch information
VeckoTheGecko authored Dec 3, 2024
1 parent 0d14640 commit eb20436
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,14 @@ jobs:
fail-fast: false
matrix:
os: [macos, ubuntu, windows]
python-version: ["3.12"]
python-version: ["3.13"]
include:
- os: ubuntu
python-version: "3.10"
- os: ubuntu
python-version: "3.11"
- os: ubuntu
python-version: "3.12"
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -46,7 +48,7 @@ jobs:
uses: codecov/codecov-action@v4.6.0
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
if: matrix.python-version == '3.12'
if: matrix.python-version == '3.13'
with:
flags: unit-tests
- name: Upload test results
Expand All @@ -62,7 +64,7 @@ jobs:
fail-fast: false
matrix:
os: [macos, ubuntu, windows]
python-version: ["3.12"]
python-version: ["3.13"]
include:
- os: ubuntu
python-version: "3.10"
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
"Intended Audience :: Science/Research",
Expand Down

0 comments on commit eb20436

Please sign in to comment.