From 55906b711923df7cec712c6431477c5bd26be309 Mon Sep 17 00:00:00 2001 From: Peter Andreas Entschev Date: Tue, 20 Feb 2024 14:46:31 +0100 Subject: [PATCH] Pin Distributed dev mode installed in CI (#193) We are currently still pinned to Dask/Distributed 2024.1.1 and discussions on if and how to unpin for RAPIDS 24.04/UCXX 0.37 are still ongoing. Meanwhile, we must install a version of Distributed that is compatible with the Dask version installed. Authors: - Peter Andreas Entschev (https://github.com/pentschev) Approvers: - Ray Douglass (https://github.com/raydouglass) URL: https://github.com/rapidsai/ucxx/pull/193 --- ci/test_common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/test_common.sh b/ci/test_common.sh index b7b32eab..06b7c60e 100755 --- a/ci/test_common.sh +++ b/ci/test_common.sh @@ -166,7 +166,7 @@ install_distributed_dev_mode() { # to run non-public API tests in CI. rapids-logger "Install Distributed in developer mode" - git clone https://github.com/dask/distributed /tmp/distributed + git clone https://github.com/dask/distributed /tmp/distributed -b 2024.1.1 pip install -e /tmp/distributed # `pip install -e` removes files under `distributed` but not the directory, later # causing failures to import modules.