Skip to content

Commit 0edfa21

Browse files
committed
Fixup
1 parent bec8e96 commit 0edfa21

1 file changed

Lines changed: 6 additions & 8 deletions

File tree

scripts/run.sh

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,19 @@
44
# Install
55
set -euo pipefail
66

7-
# RAPIDS_PY_CUDA_SUFFIX="$(rapids-wheel-ctk-name-gen ${RAPIDS_CUDA_VERSION})"
8-
RAPIDS_PY_CUDA_SUFFIX=12
7+
RAPIDS_PY_CUDA_SUFFIX="cu${RAPIDS_CUDA_VERSION:-12}"
8+
99
# TODO: set this to main once dask-cudf is compatible
1010
# DASK_VERSION=main
1111
DASK_VERSION=2024.12.1
1212
export PIP_YES=true
1313
export PIP_PRE=true
1414

15-
# Should this use nightly wheels or rapids-download-wheels-from-s3?
16-
1715
pip install --extra-index-url=https://pypi.anaconda.org/rapidsai-wheels-nightly/simple \
18-
"cudf-cu12" \
19-
"dask-cudf-cu12" \
16+
"cudf-${RAPIDS_PY_CUDA_SUFFIX}" \
17+
"dask-cudf-${RAPIDS_PY_CUDA_SUFFIX}" \
18+
"ucx-py-${RAPIDS_PY_CUDA_SUFFIX}" \
2019
"scipy" \
21-
"ucx" \
2220
"dask-cuda"
2321

2422
echo "Installing dask@{DASK_VERSION}"
@@ -35,4 +33,4 @@ pip uninstall dask distributed
3533
cd dask && git clean -fdx && git checkout $DASK_VERSION && pip install -e .[test] && cd ..
3634
cd distributed && git clean -fdx && git checkout $DASK_VERSION && pip install -e . && cd ..
3735

38-
./scripts/test
36+
./scripts/test.sh

0 commit comments

Comments
 (0)