Skip to content

Commit

Permalink
Use conda strict channel priority. (#109)
Browse files Browse the repository at this point in the history
This attempts to resolve some issues with CUDA packages being pulled
from both `conda-forge` and `nvidia` channels by using strict channel
priority.

The `nvidia` channel should not be needed for this package.
  • Loading branch information
bdice authored Oct 24, 2024
1 parent 14639d8 commit a823705
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions ci/build_conda.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@

set -euo pipefail

conda config --set channel_priority strict

rapids-configure-conda-channels

source rapids-configure-sccache
Expand Down
2 changes: 2 additions & 0 deletions ci/test_conda.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ set -euo pipefail

. /opt/conda/etc/profile.d/conda.sh

conda config --set channel_priority strict

rapids-logger "Install testing dependencies"

ENV_YAML_DIR="$(mktemp -d)"
Expand Down
2 changes: 2 additions & 0 deletions ci/test_patch.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ set -euo pipefail

. /opt/conda/etc/profile.d/conda.sh

conda config --set channel_priority strict

rapids-logger "Install testing dependencies"

ENV_YAML_DIR="$(mktemp -d)"
Expand Down

0 comments on commit a823705

Please sign in to comment.