From 3162d6c94f21b2b8570fb82873640d0efebe0e16 Mon Sep 17 00:00:00 2001 From: Rolando Espinoza Date: Fri, 24 Feb 2017 02:40:39 -0400 Subject: [PATCH] Declare matplotlib/numpy as explicit dependencies. --- python/setup.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/python/setup.py b/python/setup.py index 1fba756..294696a 100644 --- a/python/setup.py +++ b/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,