Skip to content

Commit

Permalink
Confirmed support for Django 5.1. (#31)
Browse files Browse the repository at this point in the history
  • Loading branch information
smithdc1 authored Oct 5, 2024
1 parent 4adb956 commit f92e513
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

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

## 2024.1 (2024-02-27)

Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ def get_long_description():
"Framework :: Django",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Framework :: Django :: 5.1",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
Expand Down
5 changes: 3 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,16 @@ max_line_length=118
[tox]
envlist =
{py38,py39,py310,py311}-django{42}-crispy{2,-latest},
{py310,py311,py312}-django{50,-latest}-crispy{2,-latest},
{py310,py311,py312}-django{50,51,-latest}-crispy{2,-latest},
lint

[testenv]
package = wheel
wheel_build_env = .pkg
deps =
django42: django>=4.2,<5.0
django50: django>=5.0a1,<5.1
django50: django>=5.0,<5.1
django51: django>=5.1,<5.2
crispy2: django-crispy-forms>=2.3
crispy-latest: https://github.com/django-crispy-forms/django-crispy-forms/archive/main.tar.gz
-rrequirements/testing.txt
Expand Down

0 comments on commit f92e513

Please sign in to comment.