소스 검색

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).
Randle Taylor 8 년 전
부모
커밋
efe8299c0a
1개의 변경된 파일0개의 추가작업 그리고 3개의 파일을 삭제
  1. 0 3
      python/setup.py

+ 0 - 3
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',
     ],