Skip to content

chore: limit pyarrow version in unit-prerelease tests #320

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
Jan 29, 2025
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
5 changes: 4 additions & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,10 @@ def prerelease(session, tests_path):
"--prefer-binary",
"--pre",
"--upgrade",
"pyarrow",
# Limit pyarrow to versions prior to 20.0.0.dev19 to prevent a RuntimeWarning
# during import. This workaround can be removed once the underlying issue
# in pyarrow is resolved (see: https://github.com/apache/arrow/issues/45380).
"pyarrow<=20.0.0.dev18",
)
# Avoid pandas==2.2.0rc0 as this version causes PyArrow to fail. Once newer
# prerelease comes out, this constraint can be removed. See
Expand Down
Loading