Skip to content
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

Pin arrow 9 in testing dependencies to prevent conda solve issues #12377

Merged
merged 8 commits into from
Dec 14, 2022
Merged
Changes from 2 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: 9 additions & 1 deletion dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ dependencies:
- cython>=0.29,<0.30
- dlpack>=0.5,<0.6.0a0
- ninja
- pyarrow=9.0.0
- &pyarrow_ver pyarrow=9.0.0
- rmm=23.02.*
- scikit-build>=0.13.1
- output_types: conda
Expand Down Expand Up @@ -273,6 +273,14 @@ dependencies:
- hypothesis
- mimesis>=4.1.0
- moto>=4.0.8
# We need to pin arrow 9 in the test environment until we upgrade
# cudf to use arrow 10. Without the pin, we end up with
# unsatisfiabile constraints because changes in the arrow conda
# packages in arrow 10 include the creation of new packages (namely
# arrow-cpp was renamed to libarrow) that do not have equivalents in
# arrow 9 and whose dependency constraints prevent the downgrade to
# arrow 9 when (lib)cudf attempts to install.
- *pyarrow_ver
- pyorc
- pytest
- pytest-benchmark
Expand Down