From 2f0a576e2435a7682913ee44d808fafae0fc4238 Mon Sep 17 00:00:00 2001 From: Helin Wang Date: Fri, 15 Nov 2019 15:26:44 -0800 Subject: [PATCH] chore(automl): reduce Pandas version requirement The current pandas version 0.24.0 is unnecessarily high. Pandas 0.17 was the version with the most breaking changes in recent history, so something after that will get most customers. This also aligns with BigQuery Python SDK. --- automl/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/automl/setup.py b/automl/setup.py index ce859547c666..bc57d5440b58 100644 --- a/automl/setup.py +++ b/automl/setup.py @@ -26,7 +26,7 @@ 'enum34; python_version < "3.4"', ] extras = { - "pandas": ["pandas>=0.24.0"], + "pandas": ["pandas>=0.17.1"], "storage": ["google-cloud-storage >= 1.18.0, < 2.0.0dev"], }