Skip to content

Commit 0394cf9

Browse files
authored
Updated Django support (#1281)
* Updated Django support Added support for Django 5.2 Removed outdated Django 5.0 * Python 3.13 should not run DRF 3.15 tests * Only DRF 3.16 supports Python 3.13
1 parent 76b4c41 commit 0394cf9

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

CHANGELOG.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,18 @@ any parts of the framework not mentioned in the documentation should generally b
1313
### Added
1414

1515
* Added support for Django REST framework 3.16.
16+
* Added support for Django 5.2.
1617

1718
### Removed
1819

1920
* Removed support for Python 3.8.
2021
* Removed support for Django REST framework 3.14.
22+
* Removed support for Django 5.0.
2123

2224

2325
## [7.1.0] - 2024-10-25
2426

25-
This is the last release supporting Python 3.8 and Django REST framework 3.14.
27+
This is the last release supporting Python 3.8, Django 5.0 and Django REST framework 3.14.
2628

2729
### Fixed
2830

README.rst

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

9595
1. Python (3.9, 3.10, 3.11, 3.12, 3.13)
96-
2. Django (4.2, 5.0, 5.1)
96+
2. Django (4.2, 5.1, 5.2)
9797
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.

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.9, 3.10, 3.11, 3.12, 3.13)
55-
2. Django (4.2, 5.0, 5.1)
55+
2. Django (4.2, 5.1, 5.2)
5656
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.

tox.ini

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
[tox]
22
envlist =
33
py{39,310,311,312}-django42-drf{315,316,master},
4-
py{310,311,312}-django{50,51}-drf{315,316,master},
5-
py313-django51-drf{master},
4+
py{310,311,312}-django{51,52}-drf{315,316,master},
5+
py{313}-django{51,52}-drf{316,master},
66
black,
77
docs,
88
lint
99

1010
[testenv]
1111
deps =
1212
django42: Django>=4.2,<4.3
13-
django50: Django>=5.0,<5.1
1413
django51: Django>=5.1,<5.2
14+
django52: Django>=5.2,<5.3
1515
drf315: djangorestframework>=3.15,<3.16
1616
drf316: djangorestframework>=3.16,<3.17
1717
drfmaster: https://github.com/encode/django-rest-framework/archive/master.zip

0 commit comments

Comments
 (0)