mirror of
https://github.com/encode/django-rest-framework.git
synced 2025-02-23 06:50:42 +03:00
add django 5.2a1 initial support (#9634)
* add django 5.2a1 for initial testing * declare django 5.2 support * change in docs
This commit is contained in:
parent
28d0261afc
commit
f30c0e2eed
|
@ -55,7 +55,7 @@ Some reasons you might want to use REST framework:
|
||||||
# Requirements
|
# Requirements
|
||||||
|
|
||||||
* Python 3.8+
|
* Python 3.8+
|
||||||
* Django 4.2, 5.0, 5.1
|
* Django 4.2, 5.0, 5.1, 5.2
|
||||||
|
|
||||||
We **highly recommend** and only officially support the latest patch release of
|
We **highly recommend** and only officially support the latest patch release of
|
||||||
each Python and Django series.
|
each Python and Django series.
|
||||||
|
|
|
@ -87,7 +87,7 @@ continued development by **[signing up for a paid plan][funding]**.
|
||||||
|
|
||||||
REST framework requires the following:
|
REST framework requires the following:
|
||||||
|
|
||||||
* Django (4.2, 5.0, 5.1)
|
* Django (4.2, 5.0, 5.1, 5.2)
|
||||||
* Python (3.8, 3.9, 3.10, 3.11, 3.12, 3.13)
|
* Python (3.8, 3.9, 3.10, 3.11, 3.12, 3.13)
|
||||||
|
|
||||||
We **highly recommend** and only officially support the latest patch release of
|
We **highly recommend** and only officially support the latest patch release of
|
||||||
|
|
1
setup.py
1
setup.py
|
@ -92,6 +92,7 @@ setup(
|
||||||
'Framework :: Django :: 4.2',
|
'Framework :: Django :: 4.2',
|
||||||
'Framework :: Django :: 5.0',
|
'Framework :: Django :: 5.0',
|
||||||
'Framework :: Django :: 5.1',
|
'Framework :: Django :: 5.1',
|
||||||
|
'Framework :: Django :: 5.2',
|
||||||
'Intended Audience :: Developers',
|
'Intended Audience :: Developers',
|
||||||
'License :: OSI Approved :: BSD License',
|
'License :: OSI Approved :: BSD License',
|
||||||
'Operating System :: OS Independent',
|
'Operating System :: OS Independent',
|
||||||
|
|
9
tox.ini
9
tox.ini
|
@ -1,10 +1,10 @@
|
||||||
[tox]
|
[tox]
|
||||||
envlist =
|
envlist =
|
||||||
{py38,py39}-{django42}
|
{py38,py39}-{django42}
|
||||||
{py310}-{django42,django50,django51,djangomain}
|
{py310}-{django42,django51,django52,djangomain}
|
||||||
{py311}-{django42,django50,django51,djangomain}
|
{py311}-{django42,django51,django52,djangomain}
|
||||||
{py312}-{django42,django50,django51,djangomain}
|
{py312}-{django42,django51,django52,djangomain}
|
||||||
{py313}-{django51,djangomain}
|
{py313}-{django51,django52,djangomain}
|
||||||
base
|
base
|
||||||
dist
|
dist
|
||||||
docs
|
docs
|
||||||
|
@ -19,6 +19,7 @@ deps =
|
||||||
django42: Django>=4.2,<5.0
|
django42: Django>=4.2,<5.0
|
||||||
django50: Django>=5.0,<5.1
|
django50: Django>=5.0,<5.1
|
||||||
django51: Django>=5.1,<5.2
|
django51: Django>=5.1,<5.2
|
||||||
|
django52: Django>=5.2a1,<6.0
|
||||||
djangomain: https://github.com/django/django/archive/main.tar.gz
|
djangomain: https://github.com/django/django/archive/main.tar.gz
|
||||||
-rrequirements/requirements-testing.txt
|
-rrequirements/requirements-testing.txt
|
||||||
-rrequirements/requirements-optionals.txt
|
-rrequirements/requirements-optionals.txt
|
||||||
|
|
Loading…
Reference in New Issue
Block a user