Skip to content

Commit 9099f9b

Browse files
committed
Add Python 3.14 support
1 parent 0e6cfb1 commit 9099f9b

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
os:
2121
["ubuntu-22.04"] # "windows-2025" # Disabled until solution/workaround for NVTX is present
2222
# "ubuntu-24.04" # Postponed as long as testing against CUDA 12.1, needs 12.6+
23-
python: ["3.10", "3.11", "3.12", "3.13"]
23+
python: ["3.10", "3.11", "3.12", "3.13", "3.14"]
2424

2525
name: "${{ matrix.os }} / Python ${{ matrix.python }}"
2626
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@v6
4040
with:
41-
python-version: "3.13"
41+
python-version: "3.14"
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.10", "3.11", "3.12", "3.13"]
20+
python: ["3.10", "3.11", "3.12", "3.13", "3.14"]
2121

2222
name: "Python ${{ matrix.python }}"
2323
runs-on: ubuntu-24.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.11",
1818
"Programming Language :: Python :: 3.12",
1919
"Programming Language :: Python :: 3.13",
20+
"Programming Language :: Python :: 3.14",
2021
"Topic :: Scientific/Engineering :: Image Recognition",
2122
"Topic :: Scientific/Engineering :: Visualization",
2223
"Intended Audience :: Science/Research",

0 commit comments

Comments
 (0)