From efe8299c0ac51de7cd5fdcc5591a0a7072ab868b Mon Sep 17 00:00:00 2001 From: Randle Taylor Date: Tue, 4 Jul 2017 03:51:14 -0400 Subject: [PATCH] Modify setup.py so pip install completes succesfully (#231) Including pystan & Cython in the setup_requires caused pip install to fail with a complaint about missing Cython and numpy dependencies. Removing the explicit Cython/numpy dependencies allows pip install to complete successfully (pystan pulls in Cython/numpy). --- python/setup.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/python/setup.py b/python/setup.py index 9b884e5..478bdcb 100644 --- a/python/setup.py +++ b/python/setup.py @@ -104,12 +104,9 @@ setup( license='BSD', packages=['fbprophet', 'fbprophet.tests'], setup_requires=[ - 'Cython>=0.22', - 'pystan>=2.14', ], install_requires=[ 'matplotlib', - 'numpy', 'pandas>=0.18.1', 'pystan>=2.14', ],