From 73a2cc322a181aca92900bb3d0f041f734388e3e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89tienne=20Boisseau-Sierra?= <37387755+EBoisseauSierra@users.noreply.github.com> Date: Thu, 1 Apr 2021 17:42:29 +0100 Subject: [PATCH] fix: Pin Prophet dependency after breaking changes (#13852) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Prophet is heavily dependent on Pystan: https://facebook.github.io/prophet/docs/installation.html Pystan has recently (2021-03-25) release its v3.0.0. This release is not backward compatible and breaks fbprophet: https://github.com/facebook/prophet/issues/1856 (Indeed, fbprophet 0.6 specifies `pystan>=2.14` — but doesn't restrict upgrading to next major release: https://github.com/facebook/prophet/blob/0.6/python/requirements.txt#L3) So we need to pin pystan to the lastest non 3.x release, while fbprophet fixes the dependency on their side. We have taken this opportunity to bump fbprophet too to its next minor version. Signed-off-by: Étienne Boisseau-Sierra --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 5d6d41083..f839e2a32 100644 --- a/setup.py +++ b/setup.py @@ -144,7 +144,7 @@ setup( "postgres": ["psycopg2-binary==2.8.5"], "presto": ["pyhive[presto]>=0.4.0"], "trino": ["sqlalchemy-trino>=0.2"], - "prophet": ["fbprophet>=0.6, <0.7"], + "prophet": ["fbprophet>=0.7.1, <0.8", "pystan<3.0"], "redshift": ["sqlalchemy-redshift>=0.8.1, < 0.9"], "snowflake": ["snowflake-sqlalchemy>=1.2.3, <1.3"], "teradata": ["sqlalchemy-teradata==0.9.0.dev0"],