Skip to content

Commit d83713f

Browse files
authored
Confirmed support for Django 6.0. (#43)
1 parent 045938d commit d83713f

3 files changed

Lines changed: 5 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
## Next Release (TBC)
44
* Removed support for Django 4.2, 5.0 and 5.1.
55
* Confirmed support for Python 3.14.
6+
* Confirmed support for Django 6.0.
67

78
## 2025.6 (2025-06-08)
89

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ classifiers=[
1616
"Development Status :: 5 - Production/Stable",
1717
"Framework :: Django",
1818
"Framework :: Django :: 5.2",
19+
"Framework :: Django :: 6.0",
1920
"Operating System :: OS Independent",
2021
"License :: OSI Approved :: MIT License",
2122
"Programming Language :: Python :: 3",

tox.ini

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,16 @@ max_line_length=118
33

44
[tox]
55
envlist =
6-
{py310,py311,py312,py13,py314}-django{52}-crispy{2,-latest},
6+
{py310,py311}-django{52}-crispy{2,-latest},
7+
{py312,py313,py314}-django{52,60}-crispy{2,-latest},
78
lint
89

910
[testenv]
1011
package = wheel
1112
wheel_build_env = .pkg
1213
deps =
1314
django52: django>=5.2a1,<6.0
15+
django60: django>=6.0,<6.1
1416
crispy2: django-crispy-forms>=2.3
1517
crispy-latest: https://github.com/django-crispy-forms/django-crispy-forms/archive/main.tar.gz
1618
-rrequirements/testing.txt

0 commit comments

Comments
 (0)