Skip to content

Commit ec67f0c

Browse files
authored
Removed support for Django 4.0 (#1180)
1 parent 1e37d00 commit ec67f0c

File tree

4 files changed

+4
-8
lines changed

4 files changed

+4
-8
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,11 @@ any parts of the framework not mentioned in the documentation should generally b
1717
### Removed
1818

1919
* Removed support for Python 3.7.
20+
* Removed support for Django 4.0.
2021

2122
## [6.1.0] - 2023-08-25
2223

23-
This is the last release supporting Python 3.7.
24+
This is the last release supporting Python 3.7 and Django 4.0.
2425

2526
### Added
2627

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ Requirements
9393
------------
9494

9595
1. Python (3.8, 3.9, 3.10, 3.11)
96-
2. Django (3.2, 4.0, 4.1, 4.2)
96+
2. Django (3.2, 4.1, 4.2)
9797
3. Django REST framework (3.13, 3.14)
9898

9999
We **highly** recommend and only officially support the latest patch release of each Python, Django and REST framework series.

docs/getting-started.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ like the following:
5252
## Requirements
5353

5454
1. Python (3.8, 3.9, 3.10, 3.11)
55-
2. Django (3.2, 4.0, 4.1, 4.2)
55+
2. Django (3.2, 4.1, 4.2)
5656
3. Django REST framework (3.13, 3.14)
5757

5858
We **highly** recommend and only officially support the latest patch release of each Python, Django and REST framework series.

tox.ini

-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
[tox]
22
envlist =
33
py{38,39,310}-django32-drf{313,314,master},
4-
py{38,39,310}-django40-drf{313,314,master},
54
py{38,39,310,311}-django41-drf{314,master},
65
py{38,39,310,311}-django42-drf{314,master},
76
black,
@@ -11,7 +10,6 @@ envlist =
1110
[testenv]
1211
deps =
1312
django32: Django>=3.2,<3.3
14-
django40: Django>=4.0,<4.1
1513
django41: Django>=4.1,<4.2
1614
django42: Django>=4.2,<4.3
1715
drf313: djangorestframework>=3.13,<3.14
@@ -53,9 +51,6 @@ commands =
5351
[testenv:py{38,39,310}-django32-drfmaster]
5452
ignore_outcome = true
5553

56-
[testenv:py{38,39,310}-django40-drfmaster]
57-
ignore_outcome = true
58-
5954
[testenv:py{38,39,310,311}-django41-drfmaster]
6055
ignore_outcome = true
6156

0 commit comments

Comments
 (0)