From 934930c570984c38d0e61dd032874e302cae5f9c Mon Sep 17 00:00:00 2001 From: Tom Augspurger Date: Wed, 12 Feb 2025 12:27:02 -0600 Subject: [PATCH] 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" }