Skip to content

Commit 46a69b1

Browse files
committed
Correct spelling of Django in requirements
It seems that using 'django' instead of 'Django' has the consequence that "pip install django_debug_toolbar" has the consequence of installing the latest version of Django, even if you already have Django installed.
1 parent 3480a91 commit 46a69b1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
license='BSD',
1515
packages=find_packages(exclude=('tests.*', 'tests', 'example')),
1616
install_requires=[
17-
'django>=1.4.2',
17+
'Django>=1.4.2',
1818
'sqlparse',
1919
],
2020
include_package_data=True,

0 commit comments

Comments
 (0)