Skip to content

Commit f92e513

Browse files
authored
Confirmed support for Django 5.1. (#31)
1 parent 4adb956 commit f92e513

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
* Fixed ignoring of `css_class` attribute in `accordion.html`, `accordion-group.html` and `tab.html` templates.
66
* Bumped the minimum supported version of django-crispy-forms to 2.3.
7+
* Confirmed support for Django 5.1.
78

89
## 2024.1 (2024-02-27)
910

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ def get_long_description():
3939
"Framework :: Django",
4040
"Framework :: Django :: 4.2",
4141
"Framework :: Django :: 5.0",
42+
"Framework :: Django :: 5.1",
4243
"License :: OSI Approved :: MIT License",
4344
"Operating System :: OS Independent",
4445
"Programming Language :: Python :: 3",

tox.ini

+3-2
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,16 @@ max_line_length=118
44
[tox]
55
envlist =
66
{py38,py39,py310,py311}-django{42}-crispy{2,-latest},
7-
{py310,py311,py312}-django{50,-latest}-crispy{2,-latest},
7+
{py310,py311,py312}-django{50,51,-latest}-crispy{2,-latest},
88
lint
99

1010
[testenv]
1111
package = wheel
1212
wheel_build_env = .pkg
1313
deps =
1414
django42: django>=4.2,<5.0
15-
django50: django>=5.0a1,<5.1
15+
django50: django>=5.0,<5.1
16+
django51: django>=5.1,<5.2
1617
crispy2: django-crispy-forms>=2.3
1718
crispy-latest: https://github.com/django-crispy-forms/django-crispy-forms/archive/main.tar.gz
1819
-rrequirements/testing.txt

0 commit comments

Comments
 (0)