From 934930c570984c38d0e61dd032874e302cae5f9c Mon Sep 17 00:00:00 2001 From: Tom Augspurger Date: Wed, 12 Feb 2025 12:27:02 -0600 Subject: [PATCH 1/2] Depend on released version of Dask This updates the required version of Dask / distributed to 2025.1.0, rather than `main`. --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 6586fb4..83528e2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,8 +12,8 @@ name = "rapids-dask-dependency" version = "25.04.00a0" description = "Dask and Distributed version pinning for RAPIDS" dependencies = [ - "dask @ git+https://github.com/dask/dask.git@main", - "distributed @ git+https://github.com/dask/distributed.git@main", + "dask>=2025.1.0", + "distributed>=2025.1.0", ] license = { text = "Apache 2.0" } readme = { file = "README.md", content-type = "text/markdown" } From 892103715002327d271cec9028cc200414a36be8 Mon Sep 17 00:00:00 2001 From: Tom Augspurger Date: Thu, 20 Feb 2025 07:31:21 -0800 Subject: [PATCH 2/2] Pin to 2025.2.0 exactly --- conda/recipes/rapids-dask-dependency/meta.yaml | 6 +++--- 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 71b75c6..e23472b 100644 --- a/conda/recipes/rapids-dask-dependency/meta.yaml +++ b/conda/recipes/rapids-dask-dependency/meta.yaml @@ -28,9 +28,9 @@ requirements: - setuptools - conda-verify run: - - dask >=2025.1.0 - - dask-core >=2025.1.0 - - distributed >=2025.1.0 + - dask ==2025.2.0 + - dask-core ==2025.2.0 + - distributed ==2025.2.0 about: home: https://rapids.ai/ diff --git a/pyproject.toml b/pyproject.toml index 83528e2..027398c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,8 +12,8 @@ name = "rapids-dask-dependency" version = "25.04.00a0" description = "Dask and Distributed version pinning for RAPIDS" dependencies = [ - "dask>=2025.1.0", - "distributed>=2025.1.0", + "dask==2025.2.0", + "distributed==2025.2.0", ] license = { text = "Apache 2.0" } readme = { file = "README.md", content-type = "text/markdown" }