Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump dask version #3

Merged
merged 2 commits into from
Feb 3, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions scripts/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -25,15 +25,15 @@ 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
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