From d766001bf4b5f0b3b631cf0201703f85648debf0 Mon Sep 17 00:00:00 2001 From: Rafa de la Torre Date: Wed, 9 Mar 2016 15:00:14 +0100 Subject: [PATCH] Constraint version numbers of reqs a little --- src/py/crankshaft/setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/py/crankshaft/setup.py b/src/py/crankshaft/setup.py index 96c804f..94c4cfc 100644 --- a/src/py/crankshaft/setup.py +++ b/src/py/crankshaft/setup.py @@ -41,9 +41,9 @@ setup( # The choice of component versions is dictated by what's # provisioned in the production servers. install_requires=[ - 'numpy', - 'scipy', - 'pysal', + 'numpy>=1.10.4,<2', + 'scipy>=0.11,<1', # see https://github.com/pysal/pysal/blob/master/requirements.txt + 'pysal>=1.11.0,<2', ] requires=['pysal', 'numpy'],