Skip to content

Commit 535a7f6

Browse files
authored
Support Python 3.14 (#165)
1 parent de41b77 commit 535a7f6

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@v5

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

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Use `watchfiles <https://watchfiles.helpmanual.io/>`__ in Django’s autoreloade
2929
Requirements
3030
------------
3131

32-
Python 3.9 to 3.13 supported.
32+
Python 3.9 to 3.14 supported.
3333

3434
Django 4.2 to 5.2 supported.
3535

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ classifiers = [
3333
"Programming Language :: Python :: 3.11",
3434
"Programming Language :: Python :: 3.12",
3535
"Programming Language :: Python :: 3.13",
36+
"Programming Language :: Python :: 3.14",
3637
"Programming Language :: Python :: Implementation :: CPython",
3738
"Typing :: Typed",
3839
]
@@ -93,7 +94,7 @@ lint.extend-safe-fixes = [
9394
lint.isort.required-imports = [ "from __future__ import annotations" ]
9495

9596
[tool.pyproject-fmt]
96-
max_supported_python = "3.13"
97+
max_supported_python = "3.14"
9798

9899
[tool.pytest.ini_options]
99100
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)