From 46401f2c5c888ef71888384a42693b820625d0b5 Mon Sep 17 00:00:00 2001 From: Oliver Sauder Date: Wed, 27 Dec 2023 12:13:36 +0400 Subject: [PATCH] Added support for Django 5.0 --- CHANGELOG.md | 1 + README.rst | 2 +- docs/getting-started.md | 2 +- tox.ini | 5 +++++ 4 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c4c9eca0..9664124c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,7 @@ any parts of the framework not mentioned in the documentation should generally b ### Added * Added support for Python 3.12 +* Added support for Django 5.0 ### Fixed diff --git a/README.rst b/README.rst index 59ba17da..6292b387 100644 --- a/README.rst +++ b/README.rst @@ -93,7 +93,7 @@ Requirements ------------ 1. Python (3.8, 3.9, 3.10, 3.11, 3.12) -2. Django (3.2, 4.1, 4.2) +2. Django (3.2, 4.1, 4.2, 5.0) 3. Django REST framework (3.13, 3.14) 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 e1ca4abd..10a1ec41 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -52,7 +52,7 @@ like the following: ## Requirements 1. Python (3.8, 3.9, 3.10, 3.11, 3.12) -2. Django (3.2, 4.1, 4.2) +2. Django (3.2, 4.1, 4.2, 5.0) 3. Django REST framework (3.13, 3.14) 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 3943b462..f7f83820 100644 --- a/tox.ini +++ b/tox.ini @@ -3,6 +3,7 @@ envlist = py{38,39,310}-django32-drf{313,314,master}, py{38,39,310,311}-django41-drf{314,master}, py{38,39,310,311,312}-django42-drf{314,master}, + py{310,311,312}-django50-drf{314,master}, black, docs, lint @@ -12,6 +13,7 @@ deps = 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 [testenv:py{38,39,310,311,312}-django42-drfmaster] ignore_outcome = true + +[testenv:py{310,311,312}-django50-drfmaster] +ignore_outcome = true