Skip to content

Commit c16aecf

Browse files
committed
TST: add explicit support for Python 3.14
1 parent 255a83f commit c16aecf

File tree

7 files changed

+11
-8
lines changed

7 files changed

+11
-8
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@v4
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@v4

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ repos:
77
- id: trailing-whitespace
88
- id: check-yaml
99
- repo: https://github.com/tox-dev/pyproject-fmt
10-
rev: v2.6.0
10+
rev: v2.11.0
1111
hooks:
1212
- id: pyproject-fmt
1313
- repo: https://github.com/astral-sh/ruff-pre-commit

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",

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ classifiers = [
3131
"Programming Language :: Python :: 3.11",
3232
"Programming Language :: Python :: 3.12",
3333
"Programming Language :: Python :: 3.13",
34+
"Programming Language :: Python :: 3.14",
3435
]
3536
dynamic = [
3637
"version",

testdata/empty_project/pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ classifiers = [
2020
"Programming Language :: Python :: 3.11",
2121
"Programming Language :: Python :: 3.12",
2222
"Programming Language :: Python :: 3.13",
23+
"Programming Language :: Python :: 3.14",
2324
]
2425
scripts.empty-project = "empty_project.main:cli"
2526
entry-points."pipx.run".empty-project = "empty_project.main:cli"

0 commit comments

Comments
 (0)