mirror of
https://github.com/saymrwulf/prophet.git
synced 2026-05-23 22:13:46 +00:00
update pandas minimum version
This commit is contained in:
parent
5cec062fce
commit
806eaa1aa2
2 changed files with 2 additions and 2 deletions
|
|
@ -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([
|
||||
|
|
|
|||
|
|
@ -83,7 +83,7 @@ setup(
|
|||
install_requires=[
|
||||
'matplotlib',
|
||||
'numpy',
|
||||
'pandas',
|
||||
'pandas>=0.16',
|
||||
'pystan>=2.8',
|
||||
],
|
||||
zip_safe=False,
|
||||
|
|
|
|||
Loading…
Reference in a new issue