浏览代码

Merge pull request #3 from rolando-contrib/missing-deps

Declare matplotlib/numpy as explicit dependencies.
Sean J. Taylor 8 年之前
父节点
当前提交
6606d5d134
共有 1 个文件被更改,包括 3 次插入1 次删除
  1. 3 1
      python/setup.py

+ 3 - 1
python/setup.py

@@ -81,8 +81,10 @@ setup(
         'pystan>=2.8',
     ],
     install_requires=[
+        'matplotlib',
+        'numpy',
         'pandas',
-        'pystan',
+        'pystan>=2.8',
     ],
     zip_safe=False,
     include_package_data=True,