Skip to content

Commit 6d039d4

Browse files
committed
Declare support for Python 3.14
1 parent c4a47b0 commit 6d039d4

File tree

4 files changed

+5
-2
lines changed

4 files changed

+5
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ jobs:
2525
- "3.11"
2626
- "3.12"
2727
- "3.13"
28+
- "3.14"
2829
steps:
2930
- uses: actions/checkout@v4
3031
- uses: actions/setup-python@v5

NEWS.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ unreleased
55
----------
66

77
* Drop support for Python 3.9-3.10 to match Sphinx.
8+
* Declare support for Python 3.14.
89

910
2024.10.03 - 2024-10-03
1011
-----------------------

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ def lint(session):
99
session.run("pre-commit", "run", "--all-files", *session.posargs)
1010

1111

12-
@nox.session(python=["3.11", "3.12", "3.13"])
12+
@nox.session(python=["3.11", "3.12", "3.13", "3.14"])
1313
def test(session):
1414
session.install("-e", ".[test]", silent=True)
1515
session.run("pytest", *session.posargs)

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ classifiers = [
2727
"Programming Language :: Python :: 3.11",
2828
"Programming Language :: Python :: 3.12",
2929
"Programming Language :: Python :: 3.13",
30+
"Programming Language :: Python :: 3.14",
3031
"Programming Language :: Python :: Implementation :: CPython",
3132
"Programming Language :: Python :: Implementation :: PyPy",
3233
"Topic :: Documentation",
@@ -71,4 +72,4 @@ include = [
7172
]
7273

7374
[tool.pyproject-fmt]
74-
max_supported_python = "3.13"
75+
max_supported_python = "3.14"

0 commit comments

Comments
 (0)