Skip to content

Commit 4d4dc37

Browse files
authored
Added support for Django 5.0 (#1195)
1 parent c566235 commit 4d4dc37

File tree

4 files changed

+8
-2
lines changed

4 files changed

+8
-2
lines changed

CHANGELOG.md

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

1515
* Added support for Python 3.12
16+
* Added support for Django 5.0
1617

1718
### Fixed
1819

README.rst

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

9595
1. Python (3.8, 3.9, 3.10, 3.11, 3.12)
96-
2. Django (3.2, 4.1, 4.2)
96+
2. Django (3.2, 4.1, 4.2, 5.0)
9797
3. Django REST framework (3.13, 3.14)
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.8, 3.9, 3.10, 3.11, 3.12)
55-
2. Django (3.2, 4.1, 4.2)
55+
2. Django (3.2, 4.1, 4.2, 5.0)
5656
3. Django REST framework (3.13, 3.14)
5757

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

tox.ini

+5
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ envlist =
33
py{38,39,310}-django32-drf{313,314,master},
44
py{38,39,310,311}-django41-drf{314,master},
55
py{38,39,310,311,312}-django42-drf{314,master},
6+
py{310,311,312}-django50-drf{314,master},
67
black,
78
docs,
89
lint
@@ -12,6 +13,7 @@ deps =
1213
django32: Django>=3.2,<3.3
1314
django41: Django>=4.1,<4.2
1415
django42: Django>=4.2,<4.3
16+
django50: Django>=5.0,<5.1
1517
drf313: djangorestframework>=3.13,<3.14
1618
drf314: djangorestframework>=3.14,<3.15
1719
drfmaster: https://github.com/encode/django-rest-framework/archive/master.zip
@@ -56,3 +58,6 @@ ignore_outcome = true
5658

5759
[testenv:py{38,39,310,311,312}-django42-drfmaster]
5860
ignore_outcome = true
61+
62+
[testenv:py{310,311,312}-django50-drfmaster]
63+
ignore_outcome = true

0 commit comments

Comments
 (0)