From 78791e642d06cf17096469202c1c1bec5b59c3f8 Mon Sep 17 00:00:00 2001 From: Tom Augspurger Date: Mon, 3 Feb 2025 11:05:34 -0800 Subject: [PATCH 1/2] Bump dask version This bumps the verison of dask / distributed we run against to `main`. It also speeds up the test runs a bit by only cloning a single commit. --- scripts/run.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/run.sh b/scripts/run.sh index ef0b1fb..a702b5c 100755 --- a/scripts/run.sh +++ b/scripts/run.sh @@ -11,7 +11,7 @@ RAPIDS_PY_CUDA_SUFFIX=$(echo "cu${RAPIDS_CUDA_VERSION:-12.15.1}" | cut -d '.' -f # TODO: set this to main once dask-cudf is compatible # DASK_VERSION=main -DASK_VERSION=2024.12.1 +DASK_VERSION=main export PIP_YES=true export PIP_PRE=true @@ -33,7 +33,7 @@ if [ ! -d "distributed" ]; then fi pip uninstall dask distributed -cd dask && git clean -fdx && git checkout $DASK_VERSION && pip install -e .[test] && cd .. -cd distributed && git clean -fdx && git checkout $DASK_VERSION && pip install -e . && cd .. +cd dask && pip install -e .[test] && cd .. +cd distributed && pip install -e . && cd .. ./scripts/test.sh From 7087a960e85fbdcfb1bf5b5b0e1f1160f527eca5 Mon Sep 17 00:00:00 2001 From: Tom Augspurger Date: Mon, 3 Feb 2025 12:35:41 -0800 Subject: [PATCH 2/2] pull single commit --- scripts/run.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/run.sh b/scripts/run.sh index a702b5c..9a8dbe9 100755 --- a/scripts/run.sh +++ b/scripts/run.sh @@ -25,11 +25,11 @@ pip install --extra-index-url=https://pypi.anaconda.org/rapidsai-wheels-nightly/ echo "Installing dask@{DASK_VERSION}" if [ ! -d "dask" ]; then - git clone https://github.com/dask/dask + git clone https://github.com/dask/dask --depth 1 --branch $DASK_VERSION fi if [ ! -d "distributed" ]; then - git clone https://github.com/dask/distributed + git clone https://github.com/dask/distributed --depth 1 --branch $DASK_VERSION fi pip uninstall dask distributed