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:
Marc-Aurèle Brothier 2021-08-17 16:53:50 +02:00
parent c5d9144aef
commit 955b7499e3
No known key found for this signature in database
GPG Key ID: A8E132F1FA14E781

View File

@ -82,14 +82,13 @@ setup(
author_email='tom@tomchristie.com', # SEE NOTE BELOW (*) author_email='tom@tomchristie.com', # SEE NOTE BELOW (*)
packages=find_packages(exclude=['tests*']), packages=find_packages(exclude=['tests*']),
include_package_data=True, include_package_data=True,
install_requires=["django>=2.2"], install_requires=["django>=3.0"],
python_requires=">=3.5", python_requires=">=3.5",
zip_safe=False, zip_safe=False,
classifiers=[ classifiers=[
'Development Status :: 5 - Production/Stable', 'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment', 'Environment :: Web Environment',
'Framework :: Django', 'Framework :: Django',
'Framework :: Django :: 2.2',
'Framework :: Django :: 3.0', 'Framework :: Django :: 3.0',
'Framework :: Django :: 3.1', 'Framework :: Django :: 3.1',
'Framework :: Django :: 3.2', 'Framework :: Django :: 3.2',