update pandas minimum version

This commit is contained in:
abuccts 2017-03-02 22:06:21 +08:00
parent 5cec062fce
commit 806eaa1aa2
2 changed files with 2 additions and 2 deletions

View file

@ -202,7 +202,7 @@ class Prophet(object):
# convert to days since epoch
t = np.array(
(dates - pd.datetime(1970, 1, 1))
.apply(lambda x: x.days)
.dt.days
.astype(np.float)
)
return np.column_stack([

View file

@ -83,7 +83,7 @@ setup(
install_requires=[
'matplotlib',
'numpy',
'pandas',
'pandas>=0.16',
'pystan>=2.8',
],
zip_safe=False,