Skip to content

Commit f30c0e2

Browse files
authored
add django 5.2a1 initial support (#9634)
* add django 5.2a1 for initial testing * declare django 5.2 support * change in docs
1 parent 28d0261 commit f30c0e2

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ Some reasons you might want to use REST framework:
5555
# Requirements
5656

5757
* Python 3.8+
58-
* Django 4.2, 5.0, 5.1
58+
* Django 4.2, 5.0, 5.1, 5.2
5959

6060
We **highly recommend** and only officially support the latest patch release of
6161
each Python and Django series.

docs/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ continued development by **[signing up for a paid plan][funding]**.
8787

8888
REST framework requires the following:
8989

90-
* Django (4.2, 5.0, 5.1)
90+
* Django (4.2, 5.0, 5.1, 5.2)
9191
* Python (3.8, 3.9, 3.10, 3.11, 3.12, 3.13)
9292

9393
We **highly recommend** and only officially support the latest patch release of

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,7 @@ def get_version(package):
9292
'Framework :: Django :: 4.2',
9393
'Framework :: Django :: 5.0',
9494
'Framework :: Django :: 5.1',
95+
'Framework :: Django :: 5.2',
9596
'Intended Audience :: Developers',
9697
'License :: OSI Approved :: BSD License',
9798
'Operating System :: OS Independent',

tox.ini

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[tox]
22
envlist =
33
{py38,py39}-{django42}
4-
{py310}-{django42,django50,django51,djangomain}
5-
{py311}-{django42,django50,django51,djangomain}
6-
{py312}-{django42,django50,django51,djangomain}
7-
{py313}-{django51,djangomain}
4+
{py310}-{django42,django51,django52,djangomain}
5+
{py311}-{django42,django51,django52,djangomain}
6+
{py312}-{django42,django51,django52,djangomain}
7+
{py313}-{django51,django52,djangomain}
88
base
99
dist
1010
docs
@@ -19,6 +19,7 @@ deps =
1919
django42: Django>=4.2,<5.0
2020
django50: Django>=5.0,<5.1
2121
django51: Django>=5.1,<5.2
22+
django52: Django>=5.2a1,<6.0
2223
djangomain: https://github.com/django/django/archive/main.tar.gz
2324
-rrequirements/requirements-testing.txt
2425
-rrequirements/requirements-optionals.txt

0 commit comments

Comments
 (0)