From 6f4e77df25ad622b8a88b7a9f7d2228a9c72527c Mon Sep 17 00:00:00 2001 From: "Corey J. Nolet" Date: Tue, 21 Mar 2023 16:24:11 -0400 Subject: [PATCH 1/3] Pinning dask temporarily because a recent commit broke things --- conda/environments/all_cuda-118_arch-x86_64.yaml | 4 ++-- dependencies.yaml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/conda/environments/all_cuda-118_arch-x86_64.yaml b/conda/environments/all_cuda-118_arch-x86_64.yaml index 47af29d9d2..9c62593de1 100644 --- a/conda/environments/all_cuda-118_arch-x86_64.yaml +++ b/conda/environments/all_cuda-118_arch-x86_64.yaml @@ -19,8 +19,8 @@ dependencies: - cxx-compiler - cython>=0.29,<0.30 - dask-cuda=23.04 -- dask>=2023.1.1 -- distributed>=2023.1.1 +- dask<=2023.3.1 +- distributed>=2023.3.1 - doxygen>=1.8.20 - faiss-proc=*=cuda - gcc_linux-64=11.* diff --git a/dependencies.yaml b/dependencies.yaml index 93893d07af..dc726a7d2c 100644 --- a/dependencies.yaml +++ b/dependencies.yaml @@ -173,8 +173,8 @@ dependencies: common: - output_types: [conda] packages: - - dask>=2023.1.1 - - distributed>=2023.1.1 + - dask<=2023.3.1 + - distributed>=2023.3.1 - ucx>=1.13.0 - ucx-py=0.31.* - ucx-proc=*=gpu From 7958a3289f81e5040dd385bf0fe21ace06a2c847 Mon Sep 17 00:00:00 2001 From: "Corey J. Nolet" Date: Tue, 21 Mar 2023 20:50:39 -0400 Subject: [PATCH 2/3] Updating raft-dask recipe for now. Not yet able to fix the issue w/ the suggestions from dask team --- conda/recipes/raft-dask/meta.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conda/recipes/raft-dask/meta.yaml b/conda/recipes/raft-dask/meta.yaml index b387f0f47c..a76ff851b1 100644 --- a/conda/recipes/raft-dask/meta.yaml +++ b/conda/recipes/raft-dask/meta.yaml @@ -46,7 +46,7 @@ requirements: run: - {{ pin_compatible('cudatoolkit', max_pin='x', min_pin='x') }} - cuda-python >=11.7.1,<12.0 - - dask >=2023.1.1 + - dask <=2023.3.1 - dask-cuda ={{ minor_version }} - distributed >=2023.1.1 - joblib >=0.11 From e2f1aa26e4bfc337073958e2ccbd52d6d3b0ed9c Mon Sep 17 00:00:00 2001 From: "Corey J. Nolet" Date: Wed, 22 Mar 2023 05:52:12 -0400 Subject: [PATCH 3/3] Pinning dask for wheel --- python/raft-dask/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/raft-dask/pyproject.toml b/python/raft-dask/pyproject.toml index 2fe6522f57..e93e22014f 100644 --- a/python/raft-dask/pyproject.toml +++ b/python/raft-dask/pyproject.toml @@ -38,7 +38,7 @@ dependencies = [ "numba>=0.49", "joblib>=0.11", "dask-cuda==23.4.*", - "dask>=2023.1.1", + "dask<=2023.3.1", "ucx-py==0.31.*", "distributed>=2023.1.1", "pylibraft==23.4.*",