Skip to content

Commit 47db640

Browse files
authored
Added support for Django 5.1. (#167)
1 parent 32d1036 commit 47db640

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
CHANGELOG
22
=========
33

4+
Next Release - TBC
5+
------------------
6+
7+
* Added support for Django 5.1.
8+
9+
Contributed by [David S.](https://github.com/smithdc1) via [PR #167](https://github.com/django-crispy-forms/crispy-tailwind/pull/167/)
10+
411
1.0.3 - 2024-02-13
512
------------------
613

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ classifiers=[
1616
"Framework :: Django",
1717
"Framework :: Django :: 4.2",
1818
"Framework :: Django :: 5.0",
19+
"Framework :: Django :: 5.1",
1920
"License :: OSI Approved :: MIT License",
2021
"Operating System :: OS Independent",
2122
"Programming Language :: JavaScript",

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tox]
22
envlist =
33
{py38,py39,py310,py311}-django{42}-crispy{2,-latest},
4-
{py310,py311,py312}-django{50}-crispy{2,-latest},
4+
{py310,py311,py312}-django{50,51}-crispy{2,-latest},
55
lint
66

77
[testenv]
@@ -10,6 +10,7 @@ wheel_build_env = .pkg
1010
deps =
1111
django42: django>=4.2a1,<5.0
1212
django50: django>=5.0a1,<5.1
13+
django51: django>=5.1a1,<5.2
1314
crispy2: django-crispy-forms>=2.0
1415
crispy-latest: https://github.com/django-crispy-forms/django-crispy-forms/archive/main.tar.gz
1516
extras = test

0 commit comments

Comments
 (0)