Skip to content

Commit 0a5d1fb

Browse files
authored
feat: add support for python 3.13 (#2173)
1 parent 5cad563 commit 0a5d1fb

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.github/workflows/lint.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- uses: actions/checkout@v4
18-
- name: Set up Python 3.12
18+
- name: Set up Python 3.13
1919
uses: actions/setup-python@v5
2020
with:
21-
python-version: 3.12
21+
python-version: 3.13
2222
- name: Install dependencies
2323
run: |
2424
python -m pip install --upgrade pip
@@ -29,4 +29,4 @@ jobs:
2929
- name: Ruff Lint Check
3030
run: ruff check --output-format=github .
3131
# Still run if format check fails
32-
if: success() || steps.format.conclusion == 'failure'
32+
if: success() || steps.format.conclusion == 'failure'

.github/workflows/testing.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
strategy:
1717
matrix:
18-
python-version: ["3.9", "3.10", "3.11", "3.12"]
18+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
1919

2020
steps:
2121
- uses: actions/checkout@v4

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ classifiers = [
3232
"Programming Language :: Python :: 3.10",
3333
"Programming Language :: Python :: 3.11",
3434
"Programming Language :: Python :: 3.12",
35+
"Programming Language :: Python :: 3.13",
3536
"Topic :: Scientific/Engineering",
3637
"Topic :: Scientific/Engineering :: Artificial Intelligence",
3738
]

0 commit comments

Comments
 (0)