Skip to content

Commit

Permalink
Added support for Django 5.1. (#176)
Browse files Browse the repository at this point in the history
  • Loading branch information
smithdc1 authored Jun 3, 2024
1 parent 1b21809 commit 6bc8886
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 CRISPY-BOOTSTRAP5

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

## 2024.2 (2024-02-24)

* Added support for [Switches](https://getbootstrap.com/docs/5.2/forms/checks-radios/#switches). (#162)
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,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 :: Python :: 3 :: Only",
Expand Down
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[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]
Expand All @@ -10,6 +10,7 @@ wheel_build_env = .pkg
deps =
django42: django>=4.2a1,<5.0
django50: django>=5.0a1,<5.1
django51: django>=5.1a1,<5.2
crispy2: django-crispy-forms>=2.0
crispy-latest: https://github.com/django-crispy-forms/django-crispy-forms/archive/main.tar.gz
extras = test
Expand Down

0 comments on commit 6bc8886

Please sign in to comment.