Skip to content

Commit

Permalink
ENH Replace gpuci_conda_retry with gpuci_mamba_retry (#675)
Browse files Browse the repository at this point in the history
`mamba` was recently added to gpuCI build environment, testing usage and solvability with this PR which should speed up build times.

Authors:
  - Dillon Cullinan (https://github.com/dillon-cullinan)

Approvers:
  - AJ Schmidt (https://github.com/ajschmidt8)

URL: #675
  • Loading branch information
dillon-cullinan authored Jul 29, 2021
1 parent 9dc4c23 commit bc47872
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ci/gpu/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -54,18 +54,18 @@ conda list --show-channel-urls

# Fixing Numpy version to avoid RuntimeWarning: numpy.ufunc size changed, may
# indicate binary incompatibility. Expected 192 from C header, got 216 from PyObject
gpuci_conda_retry install "cudatoolkit=$CUDA_REL" \
gpuci_mamba_retry install "cudatoolkit=$CUDA_REL" \
"cudf=${MINOR_VERSION}" "dask-cudf=${MINOR_VERSION}" \
"ucx-py=0.21.*" "ucx-proc=*=gpu" \
"rapids-build-env=$MINOR_VERSION.*"

# Pin pytest-asyncio because latest versions modify the default asyncio
# `event_loop_policy`. See https://github.com/dask/distributed/pull/4212 .
gpuci_conda_retry install "pytest-asyncio=<0.14.0"
gpuci_mamba_retry install "pytest-asyncio=<0.14.0"

# https://docs.rapids.ai/maintainers/depmgmt/
# gpuci_conda_retry remove -f rapids-build-env
# gpuci_conda_retry install "your-pkg=1.0.0"
# gpuci_mamba_retry remove -f rapids-build-env
# gpuci_mamba_retry install "your-pkg=1.0.0"


conda info
Expand Down

0 comments on commit bc47872

Please sign in to comment.