Skip to content

Commit 75dc9e6

Browse files
authored
chore: exclude pandas 2.2.0 to unblock prerelease tests (#343)
1 parent 2c6af9b commit 75dc9e6

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

noxfile.py

+6-1
Original file line numberDiff line numberDiff line change
@@ -542,7 +542,12 @@ def prerelease(session: nox.sessions.Session, tests_path):
542542
# TODO(shobs): Remove excluding version 2.2.0rc0 after
543543
# https://github.com/pandas-dev/pandas/issues/56646 and
544544
# https://github.com/pandas-dev/pandas/issues/56651 are resolved.
545-
"pandas!=2.1.4,!=2.2.0rc0",
545+
#
546+
# TODO(shobs): Remove excluding version 2.2.0 after
547+
# https://github.com/googleapis/python-bigquery-dataframes/issues/341
548+
# https://github.com/googleapis/python-bigquery-dataframes/issues/337
549+
# are resolved
550+
"pandas!=2.1.4, !=2.2.0rc0, !=2.2.0",
546551
)
547552
already_installed.add("pandas")
548553

0 commit comments

Comments
 (0)