diff --git a/CHANGELOG.md b/CHANGELOG.md index 36d3ba82..83b2e62d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,10 +17,11 @@ any parts of the framework not mentioned in the documentation should generally b ### Removed * Removed support for Python 3.7. +* Removed support for Django 4.0. ## [6.1.0] - 2023-08-25 -This is the last release supporting Python 3.7. +This is the last release supporting Python 3.7 and Django 4.0. ### Added diff --git a/README.rst b/README.rst index 6708dab5..f156f3ab 100644 --- a/README.rst +++ b/README.rst @@ -93,7 +93,7 @@ Requirements ------------ 1. Python (3.8, 3.9, 3.10, 3.11) -2. Django (3.2, 4.0, 4.1, 4.2) +2. Django (3.2, 4.1, 4.2) 3. Django REST framework (3.13, 3.14) 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 e65a0ac3..f1ab7d4d 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) -2. Django (3.2, 4.0, 4.1, 4.2) +2. Django (3.2, 4.1, 4.2) 3. Django REST framework (3.13, 3.14) 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 8d6df244..a4749185 100644 --- a/tox.ini +++ b/tox.ini @@ -1,7 +1,6 @@ [tox] envlist = py{38,39,310}-django32-drf{313,314,master}, - py{38,39,310}-django40-drf{313,314,master}, py{38,39,310,311}-django41-drf{314,master}, py{38,39,310,311}-django42-drf{314,master}, black, @@ -11,7 +10,6 @@ envlist = [testenv] deps = django32: Django>=3.2,<3.3 - django40: Django>=4.0,<4.1 django41: Django>=4.1,<4.2 django42: Django>=4.2,<4.3 drf313: djangorestframework>=3.13,<3.14 @@ -53,9 +51,6 @@ commands = [testenv:py{38,39,310}-django32-drfmaster] ignore_outcome = true -[testenv:py{38,39,310}-django40-drfmaster] -ignore_outcome = true - [testenv:py{38,39,310,311}-django41-drfmaster] ignore_outcome = true