From 6d83c9138f5a907c033ec05a322a7a98d57c95c5 Mon Sep 17 00:00:00 2001 From: GALI PREM SAGAR Date: Wed, 14 Dec 2022 14:45:31 +0530 Subject: [PATCH] Unpin `dask` and `distributed` for development (#1068) This PR unpins `dask` and `distributed` to `2022.12.0+` for `23.02` development. xref: https://github.com/rapidsai/cudf/pull/12302 Authors: - GALI PREM SAGAR (https://github.com/galipremsagar) - AJ Schmidt (https://github.com/ajschmidt8) Approvers: - Ray Douglass (https://github.com/raydouglass) - Corey J. Nolet (https://github.com/cjnolet) URL: https://github.com/rapidsai/raft/pull/1068 --- ci/gpu/build.sh | 2 +- python/raft-dask/setup.py | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ci/gpu/build.sh b/ci/gpu/build.sh index b6a1065824..8102f0664b 100644 --- a/ci/gpu/build.sh +++ b/ci/gpu/build.sh @@ -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 diff --git a/python/raft-dask/setup.py b/python/raft-dask/setup.py index 3171867928..bd21136103 100644 --- a/python/raft-dask/setup.py +++ b/python/raft-dask/setup.py @@ -26,10 +26,10 @@ "numpy", "numba>=0.49", "joblib>=0.11", - "dask-cuda==22.12", - "dask==2022.11.1", + "dask-cuda>=23.02", + "dask>=2022.12.0", f"ucx-py{cuda_suffix}", - "distributed==2022.11.1", + "distributed>=2022.12.0", f"pylibraft{cuda_suffix}", ]