Skip to content

Commit 1dbe1cb

Browse files
committed
Support new Python
1 parent 6a88b79 commit 1dbe1cb

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ jobs:
3232
fail-fast: false
3333
matrix:
3434
py:
35+
- "3.14"
3536
- "3.13"
3637
- "3.12"
3738
- "3.11"
@@ -83,6 +84,7 @@ jobs:
8384
fail-fast: false
8485
matrix:
8586
py:
87+
- "3.14"
8688
- "3.13"
8789
- "3.12"
8890
- "3.11"

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ classifiers = [
2323
"Programming Language :: Python :: 3.11",
2424
"Programming Language :: Python :: 3.12",
2525
"Programming Language :: Python :: 3.13",
26+
"Programming Language :: Python :: 3.14",
2627
"Development Status :: 5 - Production/Stable",
2728
"License :: OSI Approved :: MIT License",
2829
"Framework :: Django",

tox.ini

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

55
[gh]
66
python =
77
"3.10" = py310
88
"3.11" = py311
99
"3.12" = py312
1010
"3.13" = py313
11+
"3.14" = py314
1112

1213
[testenv]
1314
usedevelop = true

0 commit comments

Comments
 (0)