Skip to content

Commit 8783e21

Browse files
authored
Add suport for Python 3.14 (#115)
* Add Python 3.14 to tox.ini * Add Python 3.14 to test.yml * Add Python 3.14 to pyproject.toml * Update CHANGES.rst
1 parent ca10946 commit 8783e21

File tree

4 files changed

+6
-2
lines changed

4 files changed

+6
-2
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
fail-fast: false
1919
matrix:
20-
python-version: [3.9, '3.10', '3.11', '3.12', '3.13']
20+
python-version: [3.9, '3.10', '3.11', '3.12', '3.13', '3.14']
2121
max-parallel: 1
2222

2323
steps:

CHANGES.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ CHANGES
88
Environments
99
------------
1010

11+
* add python-3.14 support by @rffontenelle in https://github.com/sphinx-doc/sphinx-intl/pull/115
12+
1113
Incompatibility
1214
---------------
1315

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
"Framework :: Sphinx",
3536
]
3637

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
envlist =
3-
py{39,310,311,312,313},
3+
py{39,310,311,312,313,314},
44
lint,
55
mypy
66

@@ -11,6 +11,7 @@ python =
1111
3.11: py311
1212
3.12: py312
1313
3.13: py313
14+
3.14: py314
1415

1516
[testenv]
1617
deps=-e.[test]

0 commit comments

Comments
 (0)