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

Split libarrow build dependencies. #14506

Merged
merged 2 commits into from
Nov 28, 2023
Merged
Show file tree
Hide file tree
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 conda/environments/all_cuda-118_arch-x86_64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,15 @@ dependencies:
- hypothesis
- identify>=2.5.20
- ipython
- libarrow-all==14.0.1.*
- libarrow-acero==14.0.1.*
- libarrow-dataset==14.0.1.*
- libarrow==14.0.1.*
- libcufile-dev=1.4.0.31
- libcufile=1.4.0.31
- libcurand-dev=10.3.0.86
- libcurand=10.3.0.86
- libkvikio==24.2.*
- libparquet==14.0.1.*
- librdkafka>=1.9.0,<1.10.0a0
- librmm==24.2.*
- make
Expand Down
5 changes: 4 additions & 1 deletion conda/environments/all_cuda-120_arch-x86_64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,13 @@ dependencies:
- hypothesis
- identify>=2.5.20
- ipython
- libarrow-all==14.0.1.*
- libarrow-acero==14.0.1.*
- libarrow-dataset==14.0.1.*
- libarrow==14.0.1.*
- libcufile-dev
- libcurand-dev
- libkvikio==24.2.*
- libparquet==14.0.1.*
- librdkafka>=1.9.0,<1.10.0a0
- librmm==24.2.*
- make
Expand Down
19 changes: 15 additions & 4 deletions dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ files:
- cudatoolkit
- develop
- docs
- libarrow_build
- notebooks
- py_version
- run_common
Expand Down Expand Up @@ -242,9 +243,6 @@ dependencies:
- &gmock gmock>=1.13.0
- librmm==24.2.*
- libkvikio==24.2.*
# Hard pin the patch version used during the build. This must be kept
# in sync with the version pinned in get_arrow.cmake.
- libarrow-all==14.0.1.*
- librdkafka>=1.9.0,<1.10.0a0
# Align nvcomp version with rapids-cmake
- nvcomp==3.0.4
Expand Down Expand Up @@ -304,13 +302,26 @@ dependencies:
- output_types: pyproject
matrices:
- {matrix: null, packages: [*rmm_conda] }
libarrow_build:
common:
- output_types: conda
packages:
# Hard pin the Arrow patch version used during the build. This must
# be kept in sync with the version pinned in get_arrow.cmake.
- libarrow-acero==14.0.1.*
- libarrow-dataset==14.0.1.*
- libarrow==14.0.1.*
- libparquet==14.0.1.*
libarrow_run:
common:
- output_types: conda
packages:
# Allow runtime version to float up to minor version
# Disallow libarrow 14.0.0 due to a CVE
- libarrow-all>=14.0.1,<15.0.0a0
- libarrow-acero>=14.0.1,<15.0.0a0
- libarrow-dataset>=14.0.1,<15.0.0a0
- libarrow>=14.0.1,<15.0.0a0
- libparquet>=14.0.1,<15.0.0a0
pyarrow_run:
common:
- output_types: [conda, requirements, pyproject]
Expand Down