diff --git a/CHANGELOG.md b/CHANGELOG.md index cbfc96a0..03ef5e09 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,10 @@ any parts of the framework not mentioned in the documentation should generally b ## [Unreleased] +### Added + +* Added support for Django 6.0. + ### Removed * Removed support for Python 3.9. diff --git a/README.rst b/README.rst index d8661d84..81538c0e 100644 --- a/README.rst +++ b/README.rst @@ -93,7 +93,7 @@ Requirements ------------ 1. Python (3.10, 3.11, 3.12, 3.13, 3.14) -2. Django (4.2, 5.1, 5.2) +2. Django (4.2, 5.1, 5.2, 6.0) 3. Django REST framework (3.15, 3.16) We **highly** recommend and only officially support the latest patch release of each Python, Django and REST framework series. diff --git a/docs/getting-started.md b/docs/getting-started.md index 1830bf65..31a3eeb7 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -52,7 +52,7 @@ like the following: ## Requirements 1. Python (3.10, 3.11, 3.12, 3.13, 3.14) -2. Django (4.2, 5.1, 5.2) +2. Django (4.2, 5.1, 5.2, 6.0) 3. Django REST framework (3.15, 3.16) We **highly** recommend and only officially support the latest patch release of each Python, Django and REST framework series. diff --git a/tox.ini b/tox.ini index 429816f6..a9986ae4 100644 --- a/tox.ini +++ b/tox.ini @@ -1,8 +1,9 @@ [tox] envlist = - py{310,311,312}-django{42,51,52}-drf{315,316,main}, - py{313}-django{51,52}-drf{316,main}, - py{314}-django{52}-drf{316,main}, + py{310,311}-django{42,51,52}-drf{315,316,main}, + py{312}-django{42,51,52,60}-drf{315,316,main}, + py{313}-django{51,52,60}-drf{316,main}, + py{314}-django{52,60}-drf{316,main}, black, docs, lint @@ -12,6 +13,7 @@ deps = django42: Django>=4.2,<4.3 django51: Django>=5.1,<5.2 django52: Django>=5.2,<5.3 + django60: Django>=6.0,<6.1 drf315: djangorestframework>=3.15,<3.16 drf316: djangorestframework>=3.16,<3.17 drfmain: https://github.com/encode/django-rest-framework/archive/main.zip