This is an automated email from the ASF dual-hosted git repository.
maximebeauchemin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-superset.git
The following commit(s) were added to refs/heads/master by this push:
new 83ee917 [fix] `pandas`>=0.24.0 datetimelike API changes (#6765)
83ee917 is described below
commit 83ee9178328c5193808fe356ceb3090a299477f6
Author: ziheng <[email protected]>
AuthorDate: Mon Jan 28 09:29:56 2019 +0800
[fix] `pandas`>=0.24.0 datetimelike API changes (#6765)
---
requirements.txt | 4 ++--
setup.py | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/requirements.txt b/requirements.txt
index 9767f28..0b0fd48 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -42,8 +42,8 @@ kombu==4.2.1 # via celery
mako==1.0.7 # via alembic
markdown==3.0
markupsafe==1.0 # via jinja2, mako
-numpy==1.15.2 # via pandas
-pandas==0.23.1
+numpy==1.15.2 # via numpy
+pandas==0.23.4 # via pandas
parsedatetime==2.0.0
pathlib2==2.3.0
polyline==1.3.2
diff --git a/setup.py b/setup.py
index 797b61e..9d3f700 100644
--- a/setup.py
+++ b/setup.py
@@ -71,7 +71,7 @@ setup(
install_requires=[
'bleach>=3.0.2, <4.0.0',
'celery>=4.2.0, <5.0.0',
- 'click>=6.0, <7.0.0', # click >=7 forces "-" instead of "_"
+ 'click>=6.0, <7.0.0', # `click`>=7 forces "-" instead of "_"
'colorama',
'contextlib2',
'croniter>=0.3.26',
@@ -88,7 +88,7 @@ setup(
'idna',
'isodate',
'markdown>=3.0',
- 'pandas>=0.18.0',
+ 'pandas>=0.18.0, <0.24.0', # `pandas`>=0.24.0 changes datetimelike API
'parsedatetime',
'pathlib2',
'polyline',