Skip to content

Commit b097f2e

Browse files
authored
Upgrade to latest version of prophet (1.0.1) (#1150)
- The package has changed names: https://github.com/facebook/prophet#version-10-20210328
1 parent f069226 commit b097f2e

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

Dockerfile.tmpl

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -278,8 +278,6 @@ RUN pip install mpld3 && \
278278
pip install pyldavis==3.2.2 && \
279279
pip install mlxtend && \
280280
pip install altair && \
281-
# b/183944405 pystan 3.x is not compatible with fbprophet.
282-
pip install pystan==2.19.1.1 && \
283281
pip install ImageHash && \
284282
pip install ecos && \
285283
pip install CVXcanon && \
@@ -302,7 +300,7 @@ RUN pip install mpld3 && \
302300
pip install pyexcel-ods && \
303301
pip install sklearn-pandas && \
304302
pip install stemming && \
305-
pip install fbprophet && \
303+
pip install prophet && \
306304
pip install holoviews && \
307305
pip install geoviews && \
308306
pip install hypertools && \

tests/test_fbprophet.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import numpy as np
44
import pandas as pd
55

6-
from fbprophet import Prophet
6+
from prophet import Prophet
77

88
class TestFbProphet(unittest.TestCase):
99
def test_fit(self):

0 commit comments

Comments
 (0)