Skip to content

Commit

Permalink
Added Django 5.1 support. (#1390)
Browse files Browse the repository at this point in the history
  • Loading branch information
smithdc1 committed Jun 3, 2024
1 parent bce28b2 commit 255a08f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# CHANGELOG for django-crispy-forms

## 2.2 (TBC)
* Added support for Django 5.1.

## 2.1 (2023-10-15)
* Added support for Django 5.0.
* Dropped support for Django 3.2, 4.0 and 4.1.
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ classifiers=[
"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 :: JavaScript",
Expand Down
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
[tox]
envlist =
{py38,py39,py310,py311}-django{42},
{py310,py311,py312}-django{50,-latest},
{py310,py311,py312}-django{50,51,-latest},
lint

[testenv]
deps =
django42: django>=4.2a,<5.0
django50: django>=5.0a,<5.1
django51: django>=5.1a,<5.2
django-latest: https://github.com/django/django/archive/main.tar.gz
-rrequirements/testing.txt
allowlist_externals = make
Expand Down

0 comments on commit 255a08f

Please sign in to comment.