Skip to content

Commit

Permalink
fix: exclude pandas 2.2.0rc0 to unblock prerelease tests (#292)
Browse files Browse the repository at this point in the history
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 🦕
  • Loading branch information
shobsi authored Dec 28, 2023
1 parent 2cd6489 commit ac1a745
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -518,9 +518,13 @@ def prerelease(session: nox.sessions.Session, tests_path):
"--prefer-binary",
"--pre",
"--upgrade",
# TODO(shobs): Remove tying to version 2.1.3 after
# https://github.com/pandas-dev/pandas/issues/56463 is resolved
"pandas!=2.1.4",
# TODO(shobs): Remove excluding version 2.1.4 after
# https://github.com/pandas-dev/pandas/issues/56463 is resolved.
#
# 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",
)
already_installed.add("pandas")

Expand Down

0 comments on commit ac1a745

Please sign in to comment.