Skip to content

Commit d94be19

Browse files
committed
Add Python 3.14 to CI matrix
1 parent 20612be commit d94be19

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.github/workflows/nox.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
fail-fast: false
1313
matrix:
1414
platform: [ubuntu-latest, macos-latest, windows-latest]
15-
python-version: ["3.11", "3.12", "3.13"]
15+
python-version: ["3.11", "3.12", "3.13", "3.14"]
1616

1717
steps:
1818
- uses: actions/checkout@v4

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
nox.options.default_venv_backend = "uv"
88

9-
python = ["3.11", "3.12", "3.13"]
9+
python = ["3.11", "3.12", "3.13", "3.14"]
1010
num_cpus = os.cpu_count() or 1
1111
xdist = ("-n", "auto") if num_cpus > 2 else ()
1212

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ classifiers = [
1616
"Programming Language :: Python :: 3.11",
1717
"Programming Language :: Python :: 3.12",
1818
"Programming Language :: Python :: 3.13",
19+
"Programming Language :: Python :: 3.14",
1920
]
2021
dependencies = [
2122
"scipy",

0 commit comments

Comments
 (0)