Skip to content

Commit a9ac156

Browse files
authored
Removed support for Django 3.0 and 3.1 (#1026)
1 parent aa06e04 commit a9ac156

File tree

4 files changed

+13
-6
lines changed

4 files changed

+13
-6
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88
Note that in line with [Django REST framework policy](https://www.django-rest-framework.org/topics/release-notes/),
99
any parts of the framework not mentioned in the documentation should generally be considered private API, and may be subject to change.
1010

11+
## [Unreleased]
12+
13+
### Removed
14+
15+
* Removed support for Django 3.0.
16+
* Removed support for Django 3.1.
17+
1118
## [4.3.0] - 2021-12-10
1219

20+
This is the last release supporting Django 3.0 and Django 3.1.
21+
1322
### Added
1423

1524
* Added support for Django 4.0.

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ Requirements
8989
------------
9090

9191
1. Python (3.6, 3.7, 3.8, 3.9, 3.10)
92-
2. Django (2.2, 3.0, 3.1, 3.2, 4.0)
92+
2. Django (2.2, 3.2, 4.0)
9393
3. Django REST framework (3.12)
9494

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

docs/getting-started.md

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

5454
1. Python (3.6, 3.7, 3.8, 3.9, 3.10)
55-
2. Django (2.2, 3.0, 3.1, 3.2, 4.0)
55+
2. Django (2.2, 3.2, 4.0)
5656
3. Django REST framework (3.12)
5757

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

tox.ini

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,13 @@
11
[tox]
22
envlist =
3-
py{36,37,38,39}-django{22,30,31,32}-drf{312,master},
3+
py{36,37,38,39}-django{22,32}-drf{312,master},
44
py{38,39}-django40-drf{312,master},
55
py310-django{32,40}-drf{312,master},
66
lint,docs
77

88
[testenv]
99
deps =
1010
django22: Django>=2.2,<2.3
11-
django30: Django>=3.0,<3.1
12-
django31: Django>=3.1,<3.2
1311
django32: Django>=3.2,<3.3
1412
django40: Django>=4.0,<5.0
1513
drf312: djangorestframework>=3.12,<3.13
@@ -47,5 +45,5 @@ deps =
4745
commands =
4846
sphinx-build -W -b html -d docs/_build/doctrees docs docs/_build/html
4947

50-
[testenv:py{36,37,38,39}-django{22,30,31,32}-drfmaster]
48+
[testenv:py{36,37,38,39,310}-django{22,32}-drfmaster]
5149
ignore_outcome = true

0 commit comments

Comments
 (0)