Skip to content

Commit 3a60325

Browse files
authored
Added support for Django 6.0 (#1313)
1 parent 7ceaf93 commit 3a60325

File tree

4 files changed

+11
-5
lines changed

4 files changed

+11
-5
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ 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 6.0.
16+
1317
### Removed
1418

1519
* Removed support for Python 3.9.

README.rst

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

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ like the following:
5252
## Requirements
5353

5454
1. Python (3.10, 3.11, 3.12, 3.13, 3.14)
55-
2. Django (4.2, 5.1, 5.2)
55+
2. Django (4.2, 5.1, 5.2, 6.0)
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

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
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}-django{42,51,52}-drf{315,316,main},
4+
py{312}-django{42,51,52,60}-drf{315,316,main},
5+
py{313}-django{51,52,60}-drf{316,main},
6+
py{314}-django{52,60}-drf{316,main},
67
black,
78
docs,
89
lint
@@ -12,6 +13,7 @@ deps =
1213
django42: Django>=4.2,<4.3
1314
django51: Django>=5.1,<5.2
1415
django52: Django>=5.2,<5.3
16+
django60: Django>=6.0,<6.1
1517
drf315: djangorestframework>=3.15,<3.16
1618
drf316: djangorestframework>=3.16,<3.17
1719
drfmain: https://github.com/encode/django-rest-framework/archive/main.zip

0 commit comments

Comments
 (0)