diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 307e57b..56f9bc9 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -13,12 +13,12 @@ Python Django ======== ========== 3.5 2.2 3.6-3.7 2.2–3.2 -3.8-3.9 2.2–4.1 -3.10 3.2-4.1 -3.11 4.1 +3.8-3.9 2.2–4.2 +3.10 3.2-4.2 +3.11 4.1-4.2 ======== ========== -- Added support for Django 4.0, 4.1 and Python 3.10, 3.11. +- Added support for Django 4.0, 4.1, 4.2 and Python 3.10, 3.11. - Removed support for Django 2.1 0.14.0 (2021-06-08) diff --git a/README.rst b/README.rst index 66d7008..da057c3 100644 --- a/README.rst +++ b/README.rst @@ -7,7 +7,7 @@ Django-extra-views is a Django package which introduces additional class-based v in order to simplify common design patterns such as those found in the Django admin interface. -Supported Python and Django versions: Python 3.5+, Django 2.2-4.1, +Supported Python and Django versions: Python 3.5+, Django 2.2-4.2, see `tox.ini `_ for an up-to-date list. Full documentation is available at `read the docs`_. diff --git a/extra_views_tests/migrations/0001_initial.py b/extra_views_tests/migrations/0001_initial.py index 9912c08..7059bf4 100644 --- a/extra_views_tests/migrations/0001_initial.py +++ b/extra_views_tests/migrations/0001_initial.py @@ -6,7 +6,6 @@ class Migration(migrations.Migration): - initial = True dependencies = [("contenttypes", "0002_remove_content_type_name")] diff --git a/tox.ini b/tox.ini index e13ad1b..966b74d 100644 --- a/tox.ini +++ b/tox.ini @@ -2,10 +2,10 @@ envlist = py35-django{22} py36-django{22,30,31,32} py37-django{22,30,31,32} - py38-django{22,30,31,32,40,41,master} - py39-django{22,30,31,32,40,41,master} - py310-django{32,40,41,master} - py311-django{41,master} + py38-django{22,30,31,32,40,41,42} + py39-django{22,30,31,32,40,41,42} + py310-django{32,40,41,42,master} + py311-django{41,42,master} black isort flake8 @@ -39,6 +39,7 @@ deps = django32: Django>=3.2,<4.0 django40: Django>=4.0,<4.1 django41: Django>=4.1,<4.2 + django42: Django>=4.2,<5.0 djangomaster: https://github.com/django/django/archive/main.tar.gz pytest-django pytest-cov