Skip to content

Commit

Permalink
Add support for django-crispy-forms 2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ckrybus committed Nov 30, 2023
1 parent a4f5f87 commit bc170dd
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
matrix:
python-version: [3.8, 3.9, "3.10", "3.11", "3.12"]
django: [4.2.*, "5.0rc1"]
crispy-forms: [2.0.*]
crispy-forms: [2.0.*, 2.1.*]
exclude:
- python-version: "3.12"
django: "5.0rc1"
Expand Down
1 change: 1 addition & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ Unreleased

* Add support for Django 5.0
* Drop support for Django 3.2, 4.0 and 4.1
* Add support for django-crispy-forms 2.1


0.10.0 (2023-07-03)
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Officially supported versions:

* Django: 4.2, 5.0
* Python 3.8, 3.9, 3.10, 3.11, 3.12
* django-crispy-forms 2.0
* django-crispy-forms 2.0, 2.1
* Bulma.css 0.9.4


Expand Down
7 changes: 4 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
[tox]
envlist =
py{38,39,310}-django{42}-crispy{20},
py{310}-django{50}-crispy{20,-latest},
py{311,312}-django{42,50,-latest}-crispy{20,-latest},
py{38,39,310}-django{42}-crispy{20,21},
py{310}-django{50}-crispy{20,21,-latest},
py{311,312}-django{42,50,-latest}-crispy{20,21,-latest},

[testenv]
deps =
django42: django>=4.2a,<5.0
django50: django>=5.0a,<5.1
django-latest: https://github.com/django/django/archive/main.tar.gz
crispy20: django-crispy-forms>=2.0,<2.1
crispy21: django-crispy-forms>=2.1,<2.2
crispy-latest: https://github.com/django-crispy-forms/django-crispy-forms/archive/main.tar.gz
-rrequirements/testing.txt
commands = python -W error::DeprecationWarning -W error::PendingDeprecationWarning -m pytest -vv {posargs}
Expand Down

0 comments on commit bc170dd

Please sign in to comment.