Skip to content

Commit eac2f9f

Browse files
authored
Added support for Django REST framework 3.16 (#1279)
1 parent 0476cbc commit eac2f9f

File tree

5 files changed

+13
-8
lines changed

5 files changed

+13
-8
lines changed

Diff for: CHANGELOG.md

+7-2
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,21 @@ 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]
11+
## [Unreleased]
12+
13+
### Added
14+
15+
* Added support for Django REST framework 3.16.
1216

1317
### Removed
1418

1519
* Removed support for Python 3.8.
20+
* Removed support for Django REST framework 3.14.
1621

1722

1823
## [7.1.0] - 2024-10-25
1924

20-
This is the last release supporting Python 3.8.
25+
This is the last release supporting Python 3.8 and Django REST framework 3.14.
2126

2227
### Fixed
2328

Diff for: README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ Requirements
9494

9595
1. Python (3.9, 3.10, 3.11, 3.12, 3.13)
9696
2. Django (4.2, 5.0, 5.1)
97-
3. Django REST framework (3.14, 3.15)
97+
3. Django REST framework (3.15, 3.16)
9898

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

Diff for: docs/getting-started.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ like the following:
5353

5454
1. Python (3.9, 3.10, 3.11, 3.12, 3.13)
5555
2. Django (4.2, 5.0, 5.1)
56-
3. Django REST framework (3.14, 3.15)
56+
3. Django REST framework (3.15, 3.16)
5757

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

Diff for: setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ def get_package_data(package):
106106
},
107107
install_requires=[
108108
"inflection>=0.5.0",
109-
"djangorestframework>=3.14",
109+
"djangorestframework>=3.15",
110110
"django>=4.2",
111111
],
112112
extras_require={

Diff for: tox.ini

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tox]
22
envlist =
3-
py{39,310,311,312}-django42-drf{314,315,master},
4-
py{310,311,312}-django{50,51}-drf{314,315,master},
3+
py{39,310,311,312}-django42-drf{315,316,master},
4+
py{310,311,312}-django{50,51}-drf{315,316,master},
55
py313-django51-drf{master},
66
black,
77
docs,
@@ -12,8 +12,8 @@ deps =
1212
django42: Django>=4.2,<4.3
1313
django50: Django>=5.0,<5.1
1414
django51: Django>=5.1,<5.2
15-
drf314: djangorestframework>=3.14,<3.15
1615
drf315: djangorestframework>=3.15,<3.16
16+
drf316: djangorestframework>=3.16,<3.17
1717
drfmaster: https://github.com/encode/django-rest-framework/archive/master.zip
1818
-rrequirements/requirements-testing.txt
1919
-rrequirements/requirements-optionals.txt

0 commit comments

Comments
 (0)