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

[REVIEW] Unpin dask and distributed for development #1068

Merged
merged 9 commits into from
Dec 14, 2022
2 changes: 1 addition & 1 deletion ci/gpu/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export UCX_PY_VERSION='0.30.*'
export INSTALL_DASK_MAIN=1

# Dask version to install when `INSTALL_DASK_MAIN=0`
export DASK_STABLE_VERSION="2022.11.1"
export DASK_STABLE_VERSION="2022.12.0"

################################################################################
# SETUP - Check environment
Expand Down
6 changes: 3 additions & 3 deletions python/raft-dask/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@
"numpy",
"numba>=0.49",
"joblib>=0.11",
"dask-cuda==22.12",
"dask==2022.11.1",
"dask-cuda>=22.12",
galipremsagar marked this conversation as resolved.
Show resolved Hide resolved
"dask>=2022.12.0",
f"ucx-py{cuda_suffix}",
"distributed==2022.11.1",
"distributed>=2022.12.0",
f"pylibraft{cuda_suffix}",
]

Expand Down