setup.py,requirements.txt: do not use dependency links to load django-jsonresponse

This commit is contained in:
Benjamin Dauvergne 2014-01-08 01:47:43 +01:00
parent f1c2880c31
commit 9994d72b02
2 changed files with 2 additions and 4 deletions

View File

@ -1,3 +1,3 @@
django < 1.6
south>=0.8,<0.9
http://pypi.python.org/packages/source/d/django-jsonresponse/django-jsonresponse-0.5.tar.gz
django-jsonresponse==0.5

View File

@ -26,8 +26,6 @@ setup(name='wcsinst',
include_package_data = True,
install_requires=[
'django >= 1.5.1, < 1.6',
],
dependency_links = [
'http://pypi.python.org/packages/source/d/django-jsonresponse/django-jsonresponse-0.5.tar.gz',
'django-jsonresponse==0.5',
],
)