Skip to content

fix: exclude pandas 2.2.0rc0 to unblock prerelease tests #292

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 28, 2023
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
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