We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e37d00 commit ec67f0cCopy full SHA for ec67f0c
CHANGELOG.md
@@ -17,10 +17,11 @@ any parts of the framework not mentioned in the documentation should generally b
17
### Removed
18
19
* Removed support for Python 3.7.
20
+* Removed support for Django 4.0.
21
22
## [6.1.0] - 2023-08-25
23
-This is the last release supporting Python 3.7.
24
+This is the last release supporting Python 3.7 and Django 4.0.
25
26
### Added
27
README.rst
@@ -93,7 +93,7 @@ Requirements
93
------------
94
95
1. Python (3.8, 3.9, 3.10, 3.11)
96
-2. Django (3.2, 4.0, 4.1, 4.2)
+2. Django (3.2, 4.1, 4.2)
97
3. Django REST framework (3.13, 3.14)
98
99
We **highly** recommend and only officially support the latest patch release of each Python, Django and REST framework series.
docs/getting-started.md
@@ -52,7 +52,7 @@ like the following:
52
## Requirements
53
54
55
56
57
58
tox.ini
@@ -1,7 +1,6 @@
1
[tox]
2
envlist =
3
py{38,39,310}-django32-drf{313,314,master},
4
- py{38,39,310}-django40-drf{313,314,master},
5
py{38,39,310,311}-django41-drf{314,master},
6
py{38,39,310,311}-django42-drf{314,master},
7
black,
@@ -11,7 +10,6 @@ envlist =
11
10
[testenv]
12
deps =
13
django32: Django>=3.2,<3.3
14
- django40: Django>=4.0,<4.1
15
django41: Django>=4.1,<4.2
16
django42: Django>=4.2,<4.3
drf313: djangorestframework>=3.13,<3.14
@@ -53,9 +51,6 @@ commands =
51
[testenv:py{38,39,310}-django32-drfmaster]
ignore_outcome = true
-[testenv:py{38,39,310}-django40-drfmaster]
-ignore_outcome = true
-
59
[testenv:py{38,39,310,311}-django41-drfmaster]
60
61
0 commit comments