From 955b7499e37c31237e9166bd0963e1bce668d28f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc-Aur=C3=A8le=20Brothier?= Date: Tue, 17 Aug 2021 16:53:50 +0200 Subject: [PATCH] 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. --- setup.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/setup.py b/setup.py index d755a00fe..bc64d0d36 100755 --- a/setup.py +++ b/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',