Skip to content

Commit 44f206c

Browse files
committed
Add Python 3.13 support
1 parent e6042e7 commit 44f206c

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ jobs:
1717
strategy:
1818
fail-fast: false
1919
matrix:
20-
os: ["ubuntu-22.04"] # "windows-2022" # Disabled until solution/workaround for NVTX is present
21-
python: ["3.9", "3.10", "3.11", "3.12"]
20+
os: ["ubuntu-22.04"] # "windows-2022" # Disabled until solution/workaround for NVTX is present
21+
python: ["3.9", "3.10", "3.11", "3.12", "3.13"]
2222

2323
name: "${{ matrix.os }} / Python ${{ matrix.python }}"
2424
runs-on: ${{ matrix.os }}

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
- name: Set up Python
3939
uses: actions/setup-python@v5
4040
with:
41-
python-version: "3.12"
41+
python-version: "3.13"
4242
cache: "pip"
4343

4444
- name: Set up CUDA toolkit

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
fail-fast: false
1919
matrix:
20-
python: ["3.9", "3.10", "3.11", "3.12"]
20+
python: ["3.9", "3.10", "3.11", "3.12", "3.13"]
2121

2222
name: "Python ${{ matrix.python }}"
2323
runs-on: ubuntu-22.04

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ classifiers = [
1717
"Programming Language :: Python :: 3.10",
1818
"Programming Language :: Python :: 3.11",
1919
"Programming Language :: Python :: 3.12",
20+
"Programming Language :: Python :: 3.13",
2021
"Topic :: Scientific/Engineering :: Image Recognition",
2122
"Topic :: Scientific/Engineering :: Visualization",
2223
"Intended Audience :: Science/Research",

0 commit comments

Comments
 (0)