Skip to content

Commit 59d5384

Browse files
authored
⬆️ Add support for Python 3.14 (#1075)
1 parent 7b7d961 commit 59d5384

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

.github/workflows/tests.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
strategy:
2626
fail-fast: false
2727
matrix:
28-
python-version: ["3.11", "3.12", "3.13"]
28+
python-version: ["3.11", "3.12", "3.13", "3.14"]
2929
sphinx: [">=8,<9"]
3030
os: [ubuntu-latest]
3131
include:
@@ -35,6 +35,9 @@ jobs:
3535
- os: windows-latest
3636
python-version: "3.11"
3737
sphinx: ">=8,<9"
38+
- os: windows-latest
39+
python-version: "3.14"
40+
sphinx: ">=8,<9"
3841

3942
runs-on: ${{ matrix.os }}
4043

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ classifiers = [
1818
"Programming Language :: Python :: 3.11",
1919
"Programming Language :: Python :: 3.12",
2020
"Programming Language :: Python :: 3.13",
21+
"Programming Language :: Python :: 3.14",
2122
"Programming Language :: Python :: Implementation :: CPython",
2223
"Programming Language :: Python :: Implementation :: PyPy",
2324
"Topic :: Software Development :: Libraries :: Python Modules",

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ envlist = py311-sphinx8
1616
[testenv]
1717
usedevelop = true
1818

19-
[testenv:py{311,312,313}-sphinx{8}]
19+
[testenv:py{311,312,313,314}-sphinx{8}]
2020
deps =
2121
sphinx8: sphinx>=8,<9
2222
extras =

0 commit comments

Comments
 (0)