Skip to content

Commit 0249a34

Browse files
helinwangbusunkim96
authored andcommitted
chore(automl): reduce Pandas version requirement (#9824)
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.
1 parent 570dc7c commit 0249a34

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

automl/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
'enum34; python_version < "3.4"',
2727
]
2828
extras = {
29-
"pandas": ["pandas>=0.24.0"],
29+
"pandas": ["pandas>=0.17.1"],
3030
"storage": ["google-cloud-storage >= 1.18.0, < 2.0.0dev"],
3131
}
3232

0 commit comments

Comments
 (0)