Skip to content

Commit 1cbb618

Browse files
committed
Add Python 3.14 support.
1 parent bcb6053 commit 1cbb618

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}, database {sqlite, postgres}
2828
python-version {3.12}, django-version {4.2, 5.0, 5.1, 5.2}, database {sqlite, postgres}
2929
python-version {3.13}, django-version {5.1, 5.2}, database {sqlite, postgres}
30+
python-version {3.14}, django-version {5.2}, database {sqlite, postgres}
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
@@ -37,6 +37,7 @@ classifiers = [
3737
"Programming Language :: Python :: 3.11",
3838
"Programming Language :: Python :: 3.12",
3939
"Programming Language :: Python :: 3.13",
40+
"Programming Language :: Python :: 3.14",
4041
"Topic :: Software Development :: Build Tools",
4142
]
4243
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}-{sqlite,postgres},
55
py312-{dj42,dj50,dj51,dj52}-{sqlite,postgres},
66
py313-{dj51,dj52}-{sqlite,postgres},
7+
py314-{dj52}-{sqlite,postgres},
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)