Skip to content

Commit

Permalink
Split libarrow build dependencies. (#14506)
Browse files Browse the repository at this point in the history
This PR splits the libarrow build dependencies, rather than using `libarrow-all`. This implements the proposal in #14370 (comment) and closes #14370.

Authors:
  - Bradley Dice (https://github.com/bdice)

Approvers:
  - GALI PREM SAGAR (https://github.com/galipremsagar)
  - Ray Douglass (https://github.com/raydouglass)

URL: #14506
  • Loading branch information
bdice authored Nov 28, 2023
1 parent 0952002 commit 8da6204
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 6 deletions.
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

0 comments on commit 8da6204

Please sign in to comment.