Skip to content

Commit

Permalink
chore(automl): reduce Pandas version requirement (#9824)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
helinwang authored and busunkim96 committed Nov 18, 2019
1 parent 570dc7c commit 0249a34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion automl/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"],
}

Expand Down

0 comments on commit 0249a34

Please sign in to comment.