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 C++ and Python build dependencies into separate lists. #12724

Merged
merged 4 commits into from
Mar 6, 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
1 change: 1 addition & 0 deletions conda/environments/all_cuda-118_arch-x86_64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ dependencies:
- ipython
- libarrow=10
- librdkafka=1.7.0
- librmm=23.04.*
- mimesis>=4.1.0
- moto>=4.0.8
- myst-nb
Expand Down
35 changes: 25 additions & 10 deletions dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ files:
cuda: ["11.8"]
arch: [x86_64]
includes:
- build
- build_all
- build_cpp
- build_python
- cudatoolkit
- develop
- docs
Expand All @@ -30,7 +32,7 @@ files:
test_java:
output: none
includes:
- build
- build_all
- cudatoolkit
- test_java
test_notebooks:
Expand All @@ -57,25 +59,18 @@ channels:
- conda-forge
- nvidia
dependencies:
build:
build_all:
common:
- output_types: [conda, requirements]
packages:
- &cmake_ver cmake>=3.23.1,!=3.25.0
- cuda-python>=11.7.1,<12.0
- cython>=0.29,<0.30
- dlpack>=0.5,<0.6.0a0
- ninja
- pyarrow=10
- rmm=23.04.*
- scikit-build>=0.13.1
- output_types: conda
packages:
- libarrow=10
- c-compiler
- cxx-compiler
- librdkafka=1.7.0
- protobuf=4.21
specific:
- output_types: conda
matrices:
Expand All @@ -101,6 +96,26 @@ dependencies:
cuda: "11.8"
packages:
- nvcc_linux-aarch64=11.8
build_cpp:
common:
- output_types: [conda, requirements]
packages:
- librmm=23.04.*
- output_types: conda
packages:
- librdkafka=1.7.0
build_python:
common:
- output_types: [conda, requirements]
packages:
- cuda-python>=11.7.1,<12.0
- cython>=0.29,<0.30
- pyarrow=10
- rmm=23.04.*
- scikit-build>=0.13.1
- output_types: conda
packages:
- protobuf=4.21
cudatoolkit:
specific:
- output_types: conda
Expand Down