Define install dependencies in order

I don't know if that actually affects the result, but just in case.
This commit is contained in:
Rafa de la Torre 2016-03-09 14:40:00 +01:00
parent cdd2d9e722
commit e76eb0c56f

View File

@ -40,7 +40,11 @@ setup(
# The choice of component versions is dictated by what's
# provisioned in the production servers.
install_requires=['pysal==1.11.0','numpy==1.6.1','scipy==0.17.0'],
install_requires=[
'numpy',
'scipy',
'pysal',
]
requires=['pysal', 'numpy'],