Skip to content

Commit 69ac9a9

Browse files
committed
Updated Django support
Added support for Django 5.2 Removed outdated Django 5.0
1 parent 76b4c41 commit 69ac9a9

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-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

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,16 @@
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,313}-django{51,52}-drf{315,316,master},
65
black,
76
docs,
87
lint
98

109
[testenv]
1110
deps =
1211
django42: Django>=4.2,<4.3
13-
django50: Django>=5.0,<5.1
1412
django51: Django>=5.1,<5.2
13+
django52: Django>=5.2,<5.3
1514
drf315: djangorestframework>=3.15,<3.16
1615
drf316: djangorestframework>=3.16,<3.17
1716
drfmaster: https://github.com/encode/django-rest-framework/archive/master.zip

0 commit comments

Comments
 (0)