From 1edb55a7909d7b2a913ebc14d3103ed6e87e8646 Mon Sep 17 00:00:00 2001 From: Raul Ochoa Date: Fri, 17 Jun 2016 00:06:47 +0200 Subject: [PATCH] Test: Ignore deps from setup --- src/py/Makefile | 2 +- src/py/crankshaft/setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/py/Makefile b/src/py/Makefile index 907d860..b584645 100644 --- a/src/py/Makefile +++ b/src/py/Makefile @@ -2,7 +2,7 @@ include ../../Makefile.global # Install the package locally for development install: - echo "pip install ./crankshaft" + pip install ./crankshaft # Test develpment install test: diff --git a/src/py/crankshaft/setup.py b/src/py/crankshaft/setup.py index 2469637..ce9e85c 100644 --- a/src/py/crankshaft/setup.py +++ b/src/py/crankshaft/setup.py @@ -40,7 +40,7 @@ setup( # The choice of component versions is dictated by what's # provisioned in the production servers. - install_requires=['numpy==1.11.0', 'scipy==0.17.1', 'pysal==1.11.1', 'scikit-learn==0.17.1'], + install_requires=[], # ['numpy==1.11.0', 'scipy==0.17.1', 'pysal==1.11.1', 'scikit-learn==0.17.1'], requires=['pysal', 'numpy', 'sklearn'],