Skip to content

Commit 7c54596

Browse files
adamchainztomchristie
authored andcommitted
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
1 parent 236667b commit 7c54596

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ def get_version(package):
8282
author_email='[email protected]', # SEE NOTE BELOW (*)
8383
packages=find_packages(exclude=['tests*']),
8484
include_package_data=True,
85-
install_requires=[],
85+
install_requires=["django>=1.11"],
8686
python_requires=">=3.5",
8787
zip_safe=False,
8888
classifiers=[

0 commit comments

Comments
 (0)