From c32b9271822f3e0047850f476487a3172990cbb3 Mon Sep 17 00:00:00 2001 From: GALI PREM SAGAR Date: Thu, 22 Feb 2024 11:14:40 -0600 Subject: [PATCH] Unpin dask and distributed for `24.04` development (#25) This PR unpins dask and distributed for `24.04` development. --- conda/recipes/rapids-dask-dependency/meta.yaml | 6 +++--- pip/rapids-dask-dependency/pyproject.toml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/conda/recipes/rapids-dask-dependency/meta.yaml b/conda/recipes/rapids-dask-dependency/meta.yaml index 62ada74..d640851 100644 --- a/conda/recipes/rapids-dask-dependency/meta.yaml +++ b/conda/recipes/rapids-dask-dependency/meta.yaml @@ -15,9 +15,9 @@ build: requirements: run: - - dask ==2024.1.1 - - dask-core ==2024.1.1 - - distributed ==2024.1.1 + - dask >=2024.1.1 + - dask-core >=2024.1.1 + - distributed >=2024.1.1 about: home: https://rapids.ai/ diff --git a/pip/rapids-dask-dependency/pyproject.toml b/pip/rapids-dask-dependency/pyproject.toml index 31b3e07..828d7a6 100644 --- a/pip/rapids-dask-dependency/pyproject.toml +++ b/pip/rapids-dask-dependency/pyproject.toml @@ -12,8 +12,8 @@ name = "rapids-dask-dependency" version = "24.04.00a0" description = "Dask and Distributed version pinning for RAPIDS" dependencies = [ - "dask==2024.1.1", - "distributed==2024.1.1", + "dask @ git+https://github.com/dask/dask.git@main", + "distributed @ git+https://github.com/dask/distributed.git@main", ] license = { text = "Apache 2.0" } readme = { file = "README.md", content-type = "text/markdown" }