diff --git a/CHANGELOG.md b/CHANGELOG.md index d0d2ea03..ebf48ec4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/README.rst b/README.rst index 3562e84b..d0385a75 100644 --- a/README.rst +++ b/README.rst @@ -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`_. diff --git a/pyproject.toml b/pyproject.toml index 4fc39d1c..41050433 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 = "miguel.araujo.perez@gmail.com"}] dynamic = ['version'] readme = "README.rst" diff --git a/tox.ini b/tox.ini index d58d6cc7..0bc58ebf 100644 --- a/tox.ini +++ b/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