Explorar el Código

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

Declare matplotlib/numpy as explicit dependencies.
Sean J. Taylor hace 8 años
padre
commit
6606d5d134
Se han modificado 1 ficheros con 3 adiciones y 1 borrados
  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,