Skip to content

Commit 10ca704

Browse files
authored
Support Python 3.14 (#1163)
1 parent a8e867b commit 10ca704

File tree

5 files changed

+10
-2
lines changed

5 files changed

+10
-2
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ jobs:
2626
- '3.11'
2727
- '3.12'
2828
- '3.13'
29+
- '3.14'
2930
database:
3031
- mysql:8.0
3132
- mysql:9.0

docs/changelog.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
Changelog
33
=========
44

5+
Unreleased
6+
----------
7+
8+
* Support Python 3.14.
9+
510
4.17.0 (2025-05-13)
611
-------------------
712

docs/installation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Installation
44
Requirements
55
------------
66

7-
Python 3.9 to 3.13 supported.
7+
Python 3.9 to 3.14 supported.
88

99
Django 4.2 to 5.2 supported.
1010

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ classifiers = [
3636
"Programming Language :: Python :: 3.11",
3737
"Programming Language :: Python :: 3.12",
3838
"Programming Language :: Python :: 3.13",
39+
"Programming Language :: Python :: 3.14",
3940
"Programming Language :: Python :: Implementation :: CPython",
4041
"Topic :: Database",
4142
"Typing :: Typed",
@@ -111,7 +112,7 @@ lint.extend-safe-fixes = [
111112
lint.isort.required-imports = [ "from __future__ import annotations" ]
112113

113114
[tool.pyproject-fmt]
114-
max_supported_python = "3.13"
115+
max_supported_python = "3.14"
115116

116117
[tool.pytest.ini_options]
117118
addopts = """\

tox.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
requires =
33
tox>=4.2
44
env_list =
5+
py314-django{52}
56
py313-django{52, 51}
67
py312-django{52, 51, 50, 42}
78
py311-django{52, 51, 50, 42}

0 commit comments

Comments
 (0)