mirror of
https://github.com/encode/django-rest-framework.git
synced 2024-11-25 11:04:02 +03:00
Python/Django compatibility updates (#8288)
* Update python and django versions in tox.ini * Update python requires in setup.py * Update tox.ini Co-authored-by: Tom Christie <tom@tomchristie.com>
This commit is contained in:
parent
217b0bf3af
commit
773f479719
2
setup.py
2
setup.py
|
@ -83,7 +83,7 @@ setup(
|
||||||
packages=find_packages(exclude=['tests*']),
|
packages=find_packages(exclude=['tests*']),
|
||||||
include_package_data=True,
|
include_package_data=True,
|
||||||
install_requires=["django>=2.2", "pytz"],
|
install_requires=["django>=2.2", "pytz"],
|
||||||
python_requires=">=3.5",
|
python_requires=">=3.6",
|
||||||
zip_safe=False,
|
zip_safe=False,
|
||||||
classifiers=[
|
classifiers=[
|
||||||
'Development Status :: 5 - Production/Stable',
|
'Development Status :: 5 - Production/Stable',
|
||||||
|
|
2
tox.ini
2
tox.ini
|
@ -1,6 +1,6 @@
|
||||||
[tox]
|
[tox]
|
||||||
envlist =
|
envlist =
|
||||||
{py35,py36,py37}-django22,
|
{py36,py37,py38,py39}-django22,
|
||||||
{py36,py37,py38,py39}-django31,
|
{py36,py37,py38,py39}-django31,
|
||||||
{py36,py37,py38,py39,py310}-django32,
|
{py36,py37,py38,py39,py310}-django32,
|
||||||
{py38,py39,py310}-{django40,djangomain},
|
{py38,py39,py310}-{django40,djangomain},
|
||||||
|
|
Loading…
Reference in New Issue
Block a user