Skip to content

Commit ac1a745

Browse files
authored
fix: exclude pandas 2.2.0rc0 to unblock prerelease tests (#292)
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 317908521 🦕
1 parent 2cd6489 commit ac1a745

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

noxfile.py

+7-3
Original file line numberDiff line numberDiff line change
@@ -518,9 +518,13 @@ def prerelease(session: nox.sessions.Session, tests_path):
518518
"--prefer-binary",
519519
"--pre",
520520
"--upgrade",
521-
# TODO(shobs): Remove tying to version 2.1.3 after
522-
# https://github.com/pandas-dev/pandas/issues/56463 is resolved
523-
"pandas!=2.1.4",
521+
# TODO(shobs): Remove excluding version 2.1.4 after
522+
# https://github.com/pandas-dev/pandas/issues/56463 is resolved.
523+
#
524+
# TODO(shobs): Remove excluding version 2.2.0rc0 after
525+
# https://github.com/pandas-dev/pandas/issues/56646 and
526+
# https://github.com/pandas-dev/pandas/issues/56651 are resolved.
527+
"pandas!=2.1.4,!=2.2.0rc0",
524528
)
525529
already_installed.add("pandas")
526530

0 commit comments

Comments
 (0)