Skip to content

Commit dc49a7a

Browse files
committed
Add Python 3.14 support.
1 parent 25a051e commit dc49a7a

File tree

3 files changed

+4
-0
lines changed

3 files changed

+4
-0
lines changed

.github/workflows/test-package.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ jobs:
2727
python-version {3.11}, django-version {4.1, 4.2, 5.0, 5.1, 5.2}
2828
python-version {3.12}, django-version {4.2, 5.0, 5.1, 5.2}
2929
python-version {3.13}, django-version {5.1, 5.2}
30+
python-version {3.14}, django-version {5.2}
3031
3132
outputs:
3233
matrix: ${{ steps.create_matrix.outputs.matrix }}

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ classifiers = [
3838
"Programming Language :: Python :: 3.11",
3939
"Programming Language :: Python :: 3.12",
4040
"Programming Language :: Python :: 3.13",
41+
"Programming Language :: Python :: 3.14",
4142
"Topic :: Software Development :: Build Tools",
4243
]
4344
dependencies = [

tox.ini

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,15 @@ envlist =
44
py311-{dj41,dj42,dj50,dj51,dj52},
55
py312-{dj42,dj50,dj51,dj52},
66
py313-{dj51,dj52},
7+
py314-{dj52},
78

89
[gh-actions]
910
python =
1011
3.10: py310
1112
3.11: py311
1213
3.12: py312
1314
3.13: py313
15+
3.14: py314
1416

1517
[testenv]
1618
passenv = CI,GITHUB_WORKFLOW

0 commit comments

Comments
 (0)