Skip to content

Commit

Permalink
Dropped support for Django 3.2 (#1370)
Browse files Browse the repository at this point in the history
  • Loading branch information
smithdc1 committed Oct 13, 2023
1 parent 5f881fa commit fdfd0ce
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 8 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Expand Up @@ -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.

Expand Down
2 changes: 1 addition & 1 deletion README.rst
Expand Up @@ -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`_.

Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Expand Up @@ -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",
Expand All @@ -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 = "miguel.araujo.perez@gmail.com"}]
dynamic = ['version']
readme = "README.rst"
Expand Down
6 changes: 2 additions & 4 deletions tox.ini
@@ -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
Expand Down

0 comments on commit fdfd0ce

Please sign in to comment.