Skip to content

Commit c9c079d

Browse files
📦 Confirm support for Python 3.14
1 parent 76dbd92 commit c9c079d

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,13 @@ jobs:
2626
runs-on: ubuntu-latest
2727
strategy:
2828
matrix:
29-
python: ['3.10', '3.11', '3.12', '3.13']
29+
python: ['3.10', '3.11', '3.12', '3.13', '3.14']
3030
django: ['4.2', '5.2', '6.0']
3131
exclude:
3232
- python: '3.13'
3333
django: '4.2'
34+
- python: '3.14'
35+
django: '4.2'
3436

3537
name: Run the test suite (Python ${{ matrix.python }}, Django ${{ matrix.django }})
3638

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ classifiers = [
2727
"Programming Language :: Python :: 3.11",
2828
"Programming Language :: Python :: 3.12",
2929
"Programming Language :: Python :: 3.13",
30+
"Programming Language :: Python :: 3.14",
3031
"Topic :: Software Development :: Libraries :: Python Modules",
3132
]
3233
requires-python = ">=3.10"

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tox]
22
envlist =
33
py{310,311}-django{42,52}
4-
py{312,313}-django{52,60}
4+
py{312,313,314}-django{52,60}
55
ruff
66
docs
77
skip_missing_interpreters = true
@@ -12,6 +12,7 @@ python =
1212
3.11: py311
1313
3.12: py312
1414
3.13: py313
15+
3.14: py314
1516

1617
[gh-actions:env]
1718
DJANGO =

0 commit comments

Comments
 (0)