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 70685c9 commit 9da7b9fCopy full SHA for 9da7b9f
βCHANGELOG.md
@@ -27,12 +27,13 @@ any parts of the framework not mentioned in the documentation should generally b
27
28
* Removed support for Python 3.7.
29
* Removed support for Django 4.0.
30
+* Removed support for Django 4.1.
31
* Removed support for Django REST framework 3.13.
32
* Removed obsolete compat `NullBooleanField` and `get_reference` definitions.
33
34
## [6.1.0] - 2023-08-25
35
-This is the last release supporting Python 3.7, Django 4.0 and Django REST framework 3.13.
36
+This is the last release supporting Python 3.7, Django 4.0, Django 4.1 and Django REST framework 3.13.
37
38
### Added
39
βREADME.rst
@@ -93,7 +93,7 @@ Requirements
93
------------
94
95
1. Python (3.8, 3.9, 3.10, 3.11, 3.12)
96
-2. Django (3.2, 4.1, 4.2, 5.0)
+2. Django (3.2, 4.2, 5.0)
97
3. Django REST framework (3.14, 3.15)
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{314,315,master},
4
- py{38,39,310,311}-django41-drf{314,315,master},
5
py{38,39,310,311,312}-django42-drf{314,315,master},
6
py{310,311,312}-django50-drf{314,315,master},
7
black,
@@ -11,7 +10,6 @@ envlist =
11
10
[testenv]
12
deps =
13
django32: Django>=3.2,<3.3
14
- django41: Django>=4.1,<4.2
15
django42: Django>=4.2,<4.3
16
django50: Django>=5.0,<5.1
17
drf314: djangorestframework>=3.14,<3.15
@@ -53,9 +51,6 @@ commands =
51
[testenv:py{38,39,310}-django32-drfmaster]
ignore_outcome = true
-[testenv:py{38,39,310,311}-django41-drfmaster]
-ignore_outcome = true
-
59
[testenv:py{38,39,310,311,312}-django42-drfmaster]
60
61
0 commit comments