Skip to content

Commit 078cd37

Browse files
Merge pull request #3 from TomAugspurger/tom/fix/bump-version
Bump dask version
2 parents a41a765 + 7087a96 commit 078cd37

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

scripts/run.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff 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
1515
export PIP_YES=true
1616
export PIP_PRE=true
1717

@@ -25,15 +25,15 @@ pip install --extra-index-url=https://pypi.anaconda.org/rapidsai-wheels-nightly/
2525
echo "Installing dask@{DASK_VERSION}"
2626

2727
if [ ! -d "dask" ]; then
28-
git clone https://github.com/dask/dask
28+
git clone https://github.com/dask/dask --depth 1 --branch $DASK_VERSION
2929
fi
3030

3131
if [ ! -d "distributed" ]; then
32-
git clone https://github.com/dask/distributed
32+
git clone https://github.com/dask/distributed --depth 1 --branch $DASK_VERSION
3333
fi
3434

3535
pip 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

0 commit comments

Comments
 (0)