From 9da7b9ffc3ad62074b18492734b90a78f4d0d542 Mon Sep 17 00:00:00 2001 From: Oliver Sauder Date: Tue, 19 Mar 2024 15:24:44 +0400 Subject: [PATCH] Removed support for Django 4.1 (#1210) --- CHANGELOG.md | 3 ++- README.rst | 2 +- docs/getting-started.md | 2 +- tox.ini | 5 ----- 4 files changed, 4 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b832850f..ee8a8f07 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -27,12 +27,13 @@ any parts of the framework not mentioned in the documentation should generally b * Removed support for Python 3.7. * Removed support for Django 4.0. +* Removed support for Django 4.1. * Removed support for Django REST framework 3.13. * Removed obsolete compat `NullBooleanField` and `get_reference` definitions. ## [6.1.0] - 2023-08-25 -This is the last release supporting Python 3.7, Django 4.0 and Django REST framework 3.13. +This is the last release supporting Python 3.7, Django 4.0, Django 4.1 and Django REST framework 3.13. ### Added diff --git a/README.rst b/README.rst index e283f7bf..afe00f85 100644 --- a/README.rst +++ b/README.rst @@ -93,7 +93,7 @@ Requirements ------------ 1. Python (3.8, 3.9, 3.10, 3.11, 3.12) -2. Django (3.2, 4.1, 4.2, 5.0) +2. Django (3.2, 4.2, 5.0) 3. Django REST framework (3.14, 3.15) We **highly** recommend and only officially support the latest patch release of each Python, Django and REST framework series. diff --git a/docs/getting-started.md b/docs/getting-started.md index aeccd46f..5aec6ffe 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -52,7 +52,7 @@ like the following: ## Requirements 1. Python (3.8, 3.9, 3.10, 3.11, 3.12) -2. Django (3.2, 4.1, 4.2, 5.0) +2. Django (3.2, 4.2, 5.0) 3. Django REST framework (3.14, 3.15) We **highly** recommend and only officially support the latest patch release of each Python, Django and REST framework series. diff --git a/tox.ini b/tox.ini index e2d842db..354e328c 100644 --- a/tox.ini +++ b/tox.ini @@ -1,7 +1,6 @@ [tox] envlist = py{38,39,310}-django32-drf{314,315,master}, - py{38,39,310,311}-django41-drf{314,315,master}, py{38,39,310,311,312}-django42-drf{314,315,master}, py{310,311,312}-django50-drf{314,315,master}, black, @@ -11,7 +10,6 @@ envlist = [testenv] deps = django32: Django>=3.2,<3.3 - django41: Django>=4.1,<4.2 django42: Django>=4.2,<4.3 django50: Django>=5.0,<5.1 drf314: djangorestframework>=3.14,<3.15 @@ -53,9 +51,6 @@ commands = [testenv:py{38,39,310}-django32-drfmaster] ignore_outcome = true -[testenv:py{38,39,310,311}-django41-drfmaster] -ignore_outcome = true - [testenv:py{38,39,310,311,312}-django42-drfmaster] ignore_outcome = true