From 7c5459626d3850537e054a11d4fe0035a4f0de24 Mon Sep 17 00:00:00 2001 From: Adam Johnson Date: Thu, 12 Dec 2019 13:03:34 +0000 Subject: [PATCH] Declare Django versions in install_requires (#7063) * Declare Django versions in install_requires Pip's dependency resolver (used in pipenv, pip-compile, poetry, etc.) can use this to infer whether there's a verison collision in what it's being asked to install or not. * No max --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 24749992b6..65536885a7 100755 --- a/setup.py +++ b/setup.py @@ -82,7 +82,7 @@ def get_version(package): author_email='tom@tomchristie.com', # SEE NOTE BELOW (*) packages=find_packages(exclude=['tests*']), include_package_data=True, - install_requires=[], + install_requires=["django>=1.11"], python_requires=">=3.5", zip_safe=False, classifiers=[