From e76eb0c56f6dc04998985c7462883e599b8e9d7f Mon Sep 17 00:00:00 2001 From: Rafa de la Torre Date: Wed, 9 Mar 2016 14:40:00 +0100 Subject: [PATCH] Define install dependencies in order I don't know if that actually affects the result, but just in case. --- src/py/crankshaft/setup.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/py/crankshaft/setup.py b/src/py/crankshaft/setup.py index c0f8c50..96c804f 100644 --- a/src/py/crankshaft/setup.py +++ b/src/py/crankshaft/setup.py @@ -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'],