From 797fc0de2e04196d47962a61689aa1cd8d98bae6 Mon Sep 17 00:00:00 2001 From: Alexander Ovchinnikov Date: Mon, 3 Oct 2022 11:13:19 +0300 Subject: [PATCH 1/2] Add Django 4.1 to test matrix --- CHANGELOG.rst | 6 +++--- README.rst | 2 +- extra_views/__init__.py | 2 +- tox.ini | 7 ++++--- 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 713a458..55f3b4f 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -13,11 +13,11 @@ Python Django ======== ========== 3.5 2.2 3.6-3.7 2.2–3.2 -3.8-3.9 2.2–4.0 -3.10 3.2-4.0 +3.8-3.9 2.2–4.1 +3.10 3.2-4.1 ======== ========== -- Added support for Django 4.0 and Python 3.10. +- Added support for Django 4.0, 4.1 and Python 3.10. - Removed support for Django 2.1 0.14.0 (2021-06-08) diff --git a/README.rst b/README.rst index 9cf2733..66d7008 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.1–3.2, +Supported Python and Django versions: Python 3.5+, Django 2.2-4.1, see `tox.ini `_ for an up-to-date list. Full documentation is available at `read the docs`_. diff --git a/extra_views/__init__.py b/extra_views/__init__.py index e17d6e4..cb1bfdb 100644 --- a/extra_views/__init__.py +++ b/extra_views/__init__.py @@ -10,7 +10,7 @@ from extra_views.dates import CalendarMonthView from extra_views.formsets import FormSetView, InlineFormSetView, ModelFormSetView -__version__ = "0.14.0" +__version__ = "0.15.0" __all__ = [ "CreateWithInlinesView", diff --git a/tox.ini b/tox.ini index dca5061..80e45dd 100644 --- a/tox.ini +++ b/tox.ini @@ -2,9 +2,9 @@ envlist = py35-django{22} py36-django{22,30,31,32} py37-django{22,30,31,32} - py38-django{22,30,31,32,40,master} - py39-django{22,30,31,32,40,master} - py310-django{32,40,master} + py38-django{22,30,31,32,40,41,master} + py39-django{22,30,31,32,40,41,master} + py310-django{32,40,41,master} black isort flake8 @@ -36,6 +36,7 @@ deps = django31: Django>=3.1,<3.2 django32: Django>=3.2,<4.0 django40: Django>=4.0,<4.1 + django41: Django>=4.1,<4.2 djangomaster: https://github.com/django/django/archive/main.tar.gz pytest-django pytest-cov From c821a36a68b8f68bb1fd78628fe82b15b39fc5d0 Mon Sep 17 00:00:00 2001 From: Alexander Ovchinnikov Date: Mon, 3 Oct 2022 12:04:33 +0300 Subject: [PATCH 2/2] Revert version change --- extra_views/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extra_views/__init__.py b/extra_views/__init__.py index cb1bfdb..e17d6e4 100644 --- a/extra_views/__init__.py +++ b/extra_views/__init__.py @@ -10,7 +10,7 @@ from extra_views.dates import CalendarMonthView from extra_views.formsets import FormSetView, InlineFormSetView, ModelFormSetView -__version__ = "0.15.0" +__version__ = "0.14.0" __all__ = [ "CreateWithInlinesView",