Skip to content

Commit 5bfddb8

Browse files
committed
Added support for DRF 3.14 and therefore dropping support for 3.12.
1 parent cbf52a3 commit 5bfddb8

File tree

5 files changed

+10
-7
lines changed

5 files changed

+10
-7
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ any parts of the framework not mentioned in the documentation should generally b
2020
### Added
2121

2222
* Added support for Django 4.1.
23+
* Added support for Django REST framework 3.14.
2324
* Expanded JSONParser API with `parse_data` method
2425

2526
### Changed
@@ -29,13 +30,14 @@ any parts of the framework not mentioned in the documentation should generally b
2930
### Removed
3031

3132
* Removed support for Django 2.2.
33+
* Removed support for Django REST framework 3.12.
3234

3335
## [5.0.0] - 2022-01-03
3436

3537
This release is not backwards compatible. For easy migration best upgrade first to version
3638
4.3.0 and resolve all deprecation warnings before updating to 5.0.0
3739

38-
This is the last release supporting Django 2.2.
40+
This is the last release supporting Django 2.2 and Django REST framework 3.12.
3941

4042
### Added
4143

README.rst

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

9191
1. Python (3.7, 3.8, 3.9, 3.10)
9292
2. Django (3.2, 4.0, 4.1)
93-
3. Django REST framework (3.12, 3.13)
93+
3. Django REST framework (3.13, 3.14)
9494

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

docs/getting-started.md

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

5454
1. Python (3.7, 3.8, 3.9, 3.10)
5555
2. Django (3.2, 4.0, 4.1)
56-
3. Django REST framework (3.12, 3.13)
56+
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.
5959

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ def get_package_data(package):
9696
],
9797
install_requires=[
9898
"inflection>=0.5.0",
99-
"djangorestframework>=3.12,<3.14",
99+
"djangorestframework>=3.13,<3.15",
100100
"django>=3.2,<4.2",
101101
],
102102
extras_require={

tox.ini

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
11
[tox]
22
envlist =
3-
py{37,38,39,310}-django32-drf{312,313,master},
4-
py{38,39,310}-django{40,41}-drf{313,master},
3+
py{37,38,39,310}-django32-drf{313,314,master},
4+
py{38,39,310}-django40-drf{313,314,master},
5+
py{38,39,310}-django41-drf{314,master},
56
lint,docs
67

78
[testenv]
89
deps =
910
django32: Django>=3.2,<3.3
1011
django40: Django>=4.0,<4.1
1112
django41: Django>=4.1,<4.2
12-
drf312: djangorestframework>=3.12,<3.13
1313
drf313: djangorestframework>=3.13,<3.14
14+
drf314: djangorestframework>=3.14,<3.15
1415
drfmaster: https://github.com/encode/django-rest-framework/archive/master.zip
1516
-rrequirements/requirements-testing.txt
1617
-rrequirements/requirements-optionals.txt

0 commit comments

Comments
 (0)