Skip to content

Commit ff215b6

Browse files
committed
Added support for Django REST framework 3.17.
1 parent 7ceaf93 commit ff215b6

File tree

5 files changed

+14
-7
lines changed

5 files changed

+14
-7
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,19 @@ any parts of the framework not mentioned in the documentation should generally b
1010

1111
## [Unreleased]
1212

13+
### Added
14+
15+
* Added support for Django REST framework 3.17.
16+
1317
### Removed
1418

1519
* Removed support for Python 3.9.
20+
* Removed support for Django REST framework 3.15.
1621

1722
## [8.1.0] - 2025-10-17
1823

24+
This is the last release supporting Python 3.9 and Django REST framework 3.15.
25+
1926
### Fixed
2027

2128
* Ensured that an empty `included` array is returned in responses when the `include` query parameter is present but no related resources exist.

README.rst

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

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

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

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.10, 3.11, 3.12, 3.13, 3.14)
5555
2. Django (4.2, 5.1, 5.2)
56-
3. Django REST framework (3.15, 3.16)
56+
3. Django REST framework (3.16, 3.17)
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
@@ -106,7 +106,7 @@ def get_package_data(package):
106106
},
107107
install_requires=[
108108
"inflection>=0.5.0",
109-
"djangorestframework>=3.15",
109+
"djangorestframework>=3.16",
110110
"django>=4.2",
111111
],
112112
extras_require={

tox.ini

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[tox]
22
envlist =
3-
py{310,311,312}-django{42,51,52}-drf{315,316,main},
4-
py{313}-django{51,52}-drf{316,main},
5-
py{314}-django{52}-drf{316,main},
3+
py{310,311,312}-django{42,51,52}-drf{316,317,main},
4+
py{313}-django{51,52}-drf{316,317,main},
5+
py{314}-django{52}-drf{317,main},
66
black,
77
docs,
88
lint
@@ -12,8 +12,8 @@ deps =
1212
django42: Django>=4.2,<4.3
1313
django51: Django>=5.1,<5.2
1414
django52: Django>=5.2,<5.3
15-
drf315: djangorestframework>=3.15,<3.16
1615
drf316: djangorestframework>=3.16,<3.17
16+
drf317: djangorestframework>=3.17,<3.18
1717
drfmain: https://github.com/encode/django-rest-framework/archive/main.zip
1818
-rrequirements/requirements-testing.txt
1919
-rrequirements/requirements-optionals.txt

0 commit comments

Comments
 (0)