Fix the dependency versions

Avoid changing the numpy version used in production
if installing the package with the --upgrade option
This commit is contained in:
Javier Goizueta
2016-02-17 11:48:23 +01:00
parent 3ded7da1d8
commit 476a8c35b5

View File

@@ -7,8 +7,6 @@ https://github.com/CartoDB/crankshaft
from setuptools import setup, find_packages
REQUIRES = ['pysal','numpy']
setup(
name='crankshaft',
@@ -40,9 +38,9 @@ setup(
'test': ['unittest', 'nose', 'mock'],
},
install_requires=REQUIRES,
install_requires=['pysal==1.11.0','numpy==1.6.1'],
requires=REQUIRES,
requires=['pysal', 'numpy'],
test_suite='test'
)