E5DD chore: exclude pandas 2.2.0 to unblock prerelease tests by shobsi · Pull Request #343 · googleapis/python-bigquery-dataframes · GitHub
[go: up one dir, main page]

Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion noxfile.py
7EC3
Original file line number Diff line number Diff line change
Expand Up @@ -542,7 +542,12 @@ def prerelease(session: nox.sessions.Session, tests_path):
# TODO(shobs): Remove excluding version 2.2.0rc0 after
# https://github.com/pandas-dev/pandas/issues/56646 and
# https://github.com/pandas-dev/pandas/issues/56651 are resolved.
"pandas!=2.1.4,!=2.2.0rc0",
#
# TODO(shobs): Remove excluding version 2.2.0 after
# https://github.com/googleapis/python-bigquery-dataframes/issues/341
# https://github.com/googleapis/python-bigquery-dataframes/issues/337
# are resolved
"pandas!=2.1.4, !=2.2.0rc0, !=2.2.0",
)
already_installed.add("pandas")

Expand Down
0