Skip to content

Commit 9da7b9f

Browse files
authored
Removed support for Django 4.1 (#1210)
1 parent 70685c9 commit 9da7b9f

File tree

4 files changed

+4
-8
lines changed

4 files changed

+4
-8
lines changed

Diff for: CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,13 @@ any parts of the framework not mentioned in the documentation should generally b
2727

2828
* Removed support for Python 3.7.
2929
* Removed support for Django 4.0.
30+
* Removed support for Django 4.1.
3031
* Removed support for Django REST framework 3.13.
3132
* Removed obsolete compat `NullBooleanField` and `get_reference` definitions.
3233

3334
## [6.1.0] - 2023-08-25
3435

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.
3637

3738
### Added
3839

Diff for: 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, 3.12)
96-
2. Django (3.2, 4.1, 4.2, 5.0)
96+
2. Django (3.2, 4.2, 5.0)
9797
3. Django REST framework (3.14, 3.15)
9898

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

Diff for: 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, 3.12)
55-
2. Django (3.2, 4.1, 4.2, 5.0)
55+
2. Django (3.2, 4.2, 5.0)
5656
3. Django REST framework (3.14, 3.15)
5757

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

Diff for: 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{314,315,master},
4-
py{38,39,310,311}-django41-drf{314,315,master},
54
py{38,39,310,311,312}-django42-drf{314,315,master},
65
py{310,311,312}-django50-drf{314,315,master},
76
black,
@@ -11,7 +10,6 @@ envlist =
1110
[testenv]
1211
deps =
1312
django32: Django>=3.2,<3.3
14-
django41: Django>=4.1,<4.2
1513
django42: Django>=4.2,<4.3
1614
django50: Django>=5.0,<5.1
1715
drf314: djangorestframework>=3.14,<3.15
@@ -53,9 +51,6 @@ commands =
5351
[testenv:py{38,39,310}-django32-drfmaster]
5452
ignore_outcome = true
5553

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

0 commit comments

Comments
 (0)