File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ RAPIDS_PY_CUDA_SUFFIX=$(echo "cu${RAPIDS_CUDA_VERSION:-12.15.1}" | cut -d '.' -f
1111
1212# TODO: set this to main once dask-cudf is compatible
1313# DASK_VERSION=main
14- DASK_VERSION=2024.12.1
14+ DASK_VERSION=main
1515export PIP_YES=true
1616export PIP_PRE=true
1717
@@ -25,15 +25,15 @@ pip install --extra-index-url=https://pypi.anaconda.org/rapidsai-wheels-nightly/
2525echo " Installing dask@{DASK_VERSION}"
2626
2727if [ ! -d " dask" ]; then
28- git clone https://github.com/dask/dask
28+ git clone https://github.com/dask/dask --depth 1 --branch $DASK_VERSION
2929fi
3030
3131if [ ! -d " distributed" ]; then
32- git clone https://github.com/dask/distributed
32+ git clone https://github.com/dask/distributed --depth 1 --branch $DASK_VERSION
3333fi
3434
3535pip uninstall dask distributed
36- cd dask && git clean -fdx && git checkout $DASK_VERSION && pip install -e .[test] && cd ..
37- cd distributed && git clean -fdx && git checkout $DASK_VERSION && pip install -e . && cd ..
36+ cd dask && pip install -e .[test] && cd ..
37+ cd distributed && pip install -e . && cd ..
3838
3939./scripts/test.sh
You can’t perform that action at this time.
0 commit comments