Skip to content

Commit 311318d

Browse files
committed
feat: run tests under Python 3.14
1 parent b69fd0c commit 311318d

File tree

5 files changed

+7
-1
lines changed

5 files changed

+7
-1
lines changed

changelog.d/+15f228a5.added.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Run tests under Python 3.14.

template/.github/workflows/{% if tasks == 'nox' %}ci.yaml{% endif %}.jinja

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ jobs:
6464
fail-fast: false
6565
matrix:
6666
python_version:
67+
- "3.14"
6768
- "3.13"
6869
- "3.12"
6970
- "3.11"

template/.github/workflows/{% if tasks == 'tox' %}ci.yaml{% endif %}.jinja

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ jobs:
6969
fail-fast: false
7070
matrix:
7171
python_version:
72+
- "3.14"
7273
- "3.13"
7374
- "3.12"
7475
- "3.11"

template/pyproject.toml.jinja

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ classifiers = [
4343
"Programming Language :: Python :: 3.11",
4444
"Programming Language :: Python :: 3.12",
4545
"Programming Language :: Python :: 3.13",
46+
"Programming Language :: Python :: 3.14",
4647
"Programming Language :: Python :: Implementation :: CPython",
4748
"Typing :: Typed",
4849
]
@@ -139,7 +140,7 @@ lint.future-annotations = true
139140
write-changes = true
140141

141142
[tool.pyproject-fmt]
142-
max_supported_python = "3.13"
143+
max_supported_python = "3.14"
143144

144145
[tool.pytest.ini_options]
145146
minversion = "6.0"

template/{% if tasks == 'tox' %}tox.toml{% endif %}.jinja

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ env_list = [
99
{%- if docs %}
1010
"docs",
1111
{%- endif %}
12+
"3.14",
1213
"3.13",
1314
"3.12",
1415
"3.11",
@@ -22,6 +23,7 @@ labels.checks = [
2223
{%- endif %}
2324
]
2425
labels.tests = [
26+
"3.14",
2527
"3.13",
2628
"3.12",
2729
"3.11",

0 commit comments

Comments
 (0)