Skip to content

Commit b760e4d

Browse files
authored
Support Python 3.14 (#1013)
1 parent bf6abfb commit b760e4d

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
@@ -25,6 +25,7 @@ jobs:
2525
- '3.11'
2626
- '3.12'
2727
- '3.13'
28+
- '3.14'
2829

2930
steps:
3031
- uses: actions/checkout@v4

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.7.0 (2025-02-06)
611
------------------
712

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Some good resources to read on the subject are:
4747
Requirements
4848
------------
4949

50-
Python 3.9 to 3.13 supported.
50+
Python 3.9 to 3.14 supported.
5151

5252
Django 4.2 to 5.2 supported.
5353

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ classifiers = [
4242
"Programming Language :: Python :: 3.11",
4343
"Programming Language :: Python :: 3.12",
4444
"Programming Language :: Python :: 3.13",
45+
"Programming Language :: Python :: 3.14",
4546
"Programming Language :: Python :: Implementation :: CPython",
4647
"Typing :: Typed",
4748
]
@@ -104,7 +105,7 @@ lint.extend-safe-fixes = [
104105
lint.isort.required-imports = [ "from __future__ import annotations" ]
105106

106107
[tool.pyproject-fmt]
107-
max_supported_python = "3.13"
108+
max_supported_python = "3.14"
108109

109110
[tool.pytest.ini_options]
110111
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)