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" }