From 99fb7333f9d67ce3d250505f267c930f6c843352 Mon Sep 17 00:00:00 2001 From: GALI PREM SAGAR Date: Tue, 19 Mar 2024 09:05:00 -0500 Subject: [PATCH] Unpin dask and distributed for 24.06 development (#33) This PR unpins dask and distributed for `24.06` development. --- conda/recipes/rapids-dask-dependency/meta.yaml | 8 ++++---- pyproject.toml | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/conda/recipes/rapids-dask-dependency/meta.yaml b/conda/recipes/rapids-dask-dependency/meta.yaml index 3da9f2c..4bb7daf 100644 --- a/conda/recipes/rapids-dask-dependency/meta.yaml +++ b/conda/recipes/rapids-dask-dependency/meta.yaml @@ -28,10 +28,10 @@ requirements: - setuptools - conda-verify run: - - dask ==2024.1.1 - - dask-core ==2024.1.1 - - distributed ==2024.1.1 - - dask-expr ==0.4.0 + - dask >=2024.1.1 + - dask-core >=2024.1.1 + - distributed >=2024.1.1 + - dask-expr >=0.4.0 about: home: https://rapids.ai/ diff --git a/pyproject.toml b/pyproject.toml index 9af161a..529d653 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,9 +12,9 @@ name = "rapids-dask-dependency" version = "24.06.00a0" description = "Dask and Distributed version pinning for RAPIDS" dependencies = [ - "dask==2024.1.1", - "distributed==2024.1.1", - "dask-expr==0.4.0", + "dask @ git+https://github.com/dask/dask.git@main", + "distributed @ git+https://github.com/dask/distributed.git@main", + "dask-expr @ git+https://github.com/dask/dask-expr.git@main", ] license = { text = "Apache 2.0" } readme = { file = "README.md", content-type = "text/markdown" }