Skip to content

Commit

Permalink
chore: test on Python 3.13 (#629)
Browse files Browse the repository at this point in the history
* chore: test on Python 3.13

* Update pyproject.toml
  • Loading branch information
henryiii authored Oct 7, 2024
1 parent 3510a7e commit 5929019
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,13 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
os: [ubuntu-latest]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
include:
- {os: macos-13, python-version: '3.8'}
- {os: macos-13, python-version: '3.12'}
- {os: macos-13, python-version: '3.13'}
- {os: windows-latest, python-version: '3.8'}
- {os: windows-latest, python-version: '3.12'}
- {os: windows-latest, python-version: '3.13'}

steps:
- uses: actions/checkout@v4
Expand All @@ -51,6 +51,7 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true

- uses: astral-sh/setup-uv@v3

Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering",
]
dependencies = [
Expand Down

0 comments on commit 5929019

Please sign in to comment.