mirror of
https://github.com/encode/django-rest-framework.git
synced 2025-07-27 08:29:59 +03:00
fix: requiring Django 3.X version
Django 2.2 support has been dropped in #7337, the setup should reflect this change too in order to ensure correct dependencies resolution.
This commit is contained in:
parent
c5d9144aef
commit
955b7499e3
3
setup.py
3
setup.py
|
@ -82,14 +82,13 @@ setup(
|
|||
author_email='tom@tomchristie.com', # SEE NOTE BELOW (*)
|
||||
packages=find_packages(exclude=['tests*']),
|
||||
include_package_data=True,
|
||||
install_requires=["django>=2.2"],
|
||||
install_requires=["django>=3.0"],
|
||||
python_requires=">=3.5",
|
||||
zip_safe=False,
|
||||
classifiers=[
|
||||
'Development Status :: 5 - Production/Stable',
|
||||
'Environment :: Web Environment',
|
||||
'Framework :: Django',
|
||||
'Framework :: Django :: 2.2',
|
||||
'Framework :: Django :: 3.0',
|
||||
'Framework :: Django :: 3.1',
|
||||
'Framework :: Django :: 3.2',
|
||||
|
|
Loading…
Reference in New Issue
Block a user