Skip to content

Commit c381d6f

Browse files
authored
Add Django 6.1 support (#702)
1 parent beaebf7 commit c381d6f

4 files changed

Lines changed: 112 additions & 86 deletions

File tree

docs/changelog.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ Changelog
55
Unreleased
66
----------
77

8+
* Add Django 6.1 support.
9+
810
* Drop Django 4.2 to 5.1 support.
911

1012
6.12.0 (2026-02-27)

pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ classifiers = [
2727
"Framework :: Django",
2828
"Framework :: Django :: 5.2",
2929
"Framework :: Django :: 6.0",
30+
"Framework :: Django :: 6.1",
3031
"Intended Audience :: Developers",
3132
"Operating System :: OS Independent",
3233
"Programming Language :: Python :: 3 :: Only",
@@ -62,13 +63,15 @@ docs = [
6263
]
6364
django52 = [ "django>=5.2a1,<6; python_version>='3.10'" ]
6465
django60 = [ "django>=6a1,<6.1; python_version>='3.12'" ]
66+
django61 = [ "django>=6.1a1,<6.2; python_version>='3.12'" ]
6567

6668
[tool.uv]
6769
sources.sphinx-build-compatibility = { git = "https://github.com/readthedocs/sphinx-build-compatibility", rev = "4f304bd4562cdc96316f4fec82b264ca379d23e0" }
6870
conflicts = [
6971
[
7072
{ group = "django52" },
7173
{ group = "django60" },
74+
{ group = "django61" },
7275
],
7376
]
7477

tox.ini

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
requires =
33
tox>=4.2
44
env_list =
5-
py314-django{60, 52}
5+
py314-django{61, 60, 52}
66
py314-codegen
7-
py313-django{60, 52}
8-
py312-django{60, 52}
7+
py313-django{61, 60, 52}
8+
py312-django{61, 60, 52}
99
py311-django{52}
1010
py310-django{52}
1111

@@ -27,11 +27,9 @@ commands =
2727
-m pytest {posargs:tests}
2828
dependency_groups =
2929
test
30-
django42: django42
31-
django50: django50
32-
django51: django51
3330
django52: django52
3431
django60: django60
32+
django61: django61
3533

3634
[testenv:py314-codegen]
3735
deps =

0 commit comments

Comments
 (0)