We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c566235 commit 4d4dc37Copy full SHA for 4d4dc37
βCHANGELOG.md
@@ -13,6 +13,7 @@ any parts of the framework not mentioned in the documentation should generally b
13
### Added
14
15
* Added support for Python 3.12
16
+* Added support for Django 5.0
17
18
### Fixed
19
βREADME.rst
@@ -93,7 +93,7 @@ Requirements
93
------------
94
95
1. Python (3.8, 3.9, 3.10, 3.11, 3.12)
96
-2. Django (3.2, 4.1, 4.2)
+2. Django (3.2, 4.1, 4.2, 5.0)
97
3. Django REST framework (3.13, 3.14)
98
99
We **highly** recommend and only officially support the latest patch release of each Python, Django and REST framework series.
βdocs/getting-started.md
@@ -52,7 +52,7 @@ like the following:
52
## Requirements
53
54
55
56
57
58
βtox.ini
@@ -3,6 +3,7 @@ envlist =
3
py{38,39,310}-django32-drf{313,314,master},
4
py{38,39,310,311}-django41-drf{314,master},
5
py{38,39,310,311,312}-django42-drf{314,master},
6
+ py{310,311,312}-django50-drf{314,master},
7
black,
8
docs,
9
lint
@@ -12,6 +13,7 @@ deps =
12
django32: Django>=3.2,<3.3
django41: Django>=4.1,<4.2
django42: Django>=4.2,<4.3
+ django50: Django>=5.0,<5.1
drf313: djangorestframework>=3.13,<3.14
drf314: djangorestframework>=3.14,<3.15
drfmaster: https://github.com/encode/django-rest-framework/archive/master.zip
@@ -56,3 +58,6 @@ ignore_outcome = true
59
[testenv:py{38,39,310,311,312}-django42-drfmaster]
60
ignore_outcome = true
61
+
62
+[testenv:py{310,311,312}-django50-drfmaster]
63
+ignore_outcome = true
0 commit comments