Skip to content

Commit d976517

Browse files
committed
TST: add explicit support for Python 3.14
1 parent ded146e commit d976517

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

.github/workflows/create_tests_package_lists.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ jobs:
1111
strategy:
1212
matrix:
1313
os: [ubuntu-latest]
14-
python-version: ["3.13", "3.12", "3.11", "3.10", "3.9"]
14+
python-version: ["3.14", "3.13", "3.12", "3.11", "3.10", "3.9"]
1515
include:
1616
- os: macos-latest
17-
python-version: "3.13"
17+
python-version: "3.14"
1818
- os: windows-latest
19-
python-version: "3.13"
19+
python-version: "3.14"
2020
steps:
2121
- uses: actions/checkout@v6
2222
- name: Set up Python ${{ matrix.python-version }}

.github/workflows/tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ jobs:
2323
fail-fast: false
2424
matrix:
2525
os: [ubuntu-latest]
26-
python-version: ["3.13", "3.12", "3.11", "3.10", "3.9"]
26+
python-version: ["3.14", "3.13", "3.12", "3.11", "3.10", "3.9"]
2727
include:
2828
- os: windows-latest
29-
python-version: "3.13"
29+
python-version: "3.14"
3030
- os: macos-latest
31-
python-version: "3.13"
31+
python-version: "3.14"
3232

3333
steps:
3434
- uses: actions/checkout@v6

changelog.d/1684.feature.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Added explicit support for Python 3.14

noxfile.py

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

66
import nox
77

8-
PYTHON_ALL_VERSIONS = ["3.13", "3.12", "3.11", "3.10", "3.9"]
8+
PYTHON_ALL_VERSIONS = ["3.14", "3.13", "3.12", "3.11", "3.10", "3.9"]
99
PYTHON_DEFAULT_VERSION = "3.13"
1010
DOC_DEPENDENCIES = [
1111
"jinja2",

0 commit comments

Comments
 (0)