Skip to content

Commit 79c54e5

Browse files
Merge pull request #119 from collective/maurits-tox-recursion-depth
Fix local tox recursion depth, support Python 3.13 and 3.14
2 parents 50a5a9f + 678124c commit 79c54e5

4 files changed

Lines changed: 7 additions & 2 deletions

File tree

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
strategy:
1515
matrix:
16-
python-version: [3.8, 3.9, "3.10", "3.11", "3.12", "pypy-3.9"]
16+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14", "pypy-3.9"]
1717

1818
steps:
1919
- uses: actions/checkout@v2

news/+2d9f51f5.feature.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Support Python 3.13 and 3.14. No changes were needed. [maurits]

setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@
2929
"Programming Language :: Python :: 3.10",
3030
"Programming Language :: Python :: 3.11",
3131
"Programming Language :: Python :: 3.12",
32+
"Programming Language :: Python :: 3.13",
33+
"Programming Language :: Python :: 3.14",
3234
"Programming Language :: Python :: Implementation",
3335
"Programming Language :: Python :: Implementation :: CPython",
3436
"Programming Language :: Python :: Implementation :: PyPy",

tox.ini

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ envlist =
55
py310,
66
py311,
77
py312,
8+
py313,
9+
py314,
810
pypy3
911

1012
[testenv]
@@ -17,4 +19,4 @@ deps =
1719
pytest-cov
1820
allowlist_externals =
1921
cp
20-
{envsitepackagesdir}/i18ndude/tests/tox-check-i18ndude-command.sh
22+
*/i18ndude/tests/tox-check-i18ndude-command.sh

0 commit comments

Comments
 (0)