From 43acd9277aafc7da91136bc8fc02b0355926b52d Mon Sep 17 00:00:00 2001 From: Jon Mease Date: Mon, 17 Jun 2019 07:11:44 -0400 Subject: [PATCH] Added upper plotly version constraint, keep it below 4.0.0 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index ca3ecda..d06559e 100644 --- a/setup.py +++ b/setup.py @@ -32,7 +32,7 @@ package_data={"plotly_express": ["data/*.csv.gz"]}, install_requires=[ "pandas>=0.20.0", - "plotly>=3.10.0", + "plotly>=3.10.0,<4.0.0a0", "statsmodels>=0.9.0", "scipy>=0.18", "patsy>=0.5",