Skip to content

Commit

Permalink
Dropped support for Django 3.2 (django-crispy-forms#1370)
Browse files Browse the repository at this point in the history
  • Loading branch information
smithdc1 authored Oct 13, 2023
1 parent 5f881fa commit fdfd0ce
Showing 4 changed files with 5 additions and 8 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@

## Next Release (TBC)
* Added support for Django 5.0.
* Dropped support for Django 4.0 and 4.1.
* Dropped support for Django 3.2, 4.0 and 4.1.
* Add support for Python 3.12.
* Dropped support for Python 3.7.

2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
@@ -12,7 +12,7 @@ django-crispy-forms

The best way to have Django_ DRY forms. Build programmatic reusable layouts out of components, having full control of the rendered HTML without writing HTML in templates. All this without breaking the standard way of doing things in Django, so it plays nice with any other form application.

`django-crispy-forms` supports Django 3.2+ with Python 3.8+.
`django-crispy-forms` supports Django 4.2+ with Python 3.8+.

Looking for Bootstrap 5 support? See the `crispy-bootstrap5 package`_.

3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -10,7 +10,6 @@ classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"License :: OSI Approved :: MIT License",
@@ -27,7 +26,7 @@ classifiers=[
"Topic :: Software Development :: Libraries :: Python Modules",
]
license = {text = "MIT"}
dependencies = ["django>=3.2"]
dependencies = ["django>=4.2"]
authors = [{name = "Miguel Araujo", email = "[email protected]"}]
dynamic = ['version']
readme = "README.rst"
6 changes: 2 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
[tox]
envlist =
{py38,py39,py310}-django{32,42},
{py310}-{django50}
{py311,py312}-django{42,50,-latest},
{py38,py39,py310,py311}-django{42},
{py310,py311,py312}-django{50,-latest},
lint

[testenv]
deps =
django32: django>=3.2,<3.3
django42: django>=4.2a,<5.0
django50: django>=5.0a,<5.1
django-latest: https://github.com/django/django/archive/main.tar.gz

0 comments on commit fdfd0ce

Please sign in to comment.