Skip to content

Commit 9dd63f6

Browse files
authored
fix: enfore pandas version requirement <2.1.4 (#265)
There seem to be a breaking change in pandas release 2.1.4 that is failing tests using `pandas.read_json`. This change is pinning pandas dependency version to <2.1.4 until the proper fix. Thank you for opening a Pull Request! Before submitting your PR, there are a few things you can do to make sure it goes smoothly: - [ ] Make sure to open an issue as a [bug/issue](https://togithub.com/googleapis/python-bigquery-dataframes/issues/new/choose) before writing your code! That way we can discuss the change, evaluate designs, and agree on the general idea - [ ] Ensure the tests and linter pass - [ ] Code coverage does not decrease (if any source code was changed) - [ ] Appropriate docs were updated (if necessary) Fixes internal issue 315539920 🦕
1 parent d21c6dd commit 9dd63f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
"google-cloud-storage >=2.0.0",
4646
# TODO: Relax upper bound once we have fixed `system_prerelease` tests.
4747
"ibis-framework[bigquery] >=6.2.0,<7.0.0dev",
48-
"pandas >=1.5.0",
48+
"pandas >=1.5.0,<2.1.4",
4949
"pydata-google-auth >=1.8.2",
5050
"requests >=2.27.1",
5151
"scikit-learn >=1.2.2",

0 commit comments

Comments
 (0)