diff --git a/conda/recipes/rapids-dask-dependency/meta.yaml b/conda/recipes/rapids-dask-dependency/meta.yaml index c0fd3ce..ea997ff 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.9.0 - - dask-core ==2024.9.0 - - distributed ==2024.9.0 - - dask-expr ==1.1.14 + - dask >=2024.9.0 + - dask-core >=2024.9.0 + - distributed >=2024.9.0 + - dask-expr >=1.1.14 about: home: https://rapids.ai/ diff --git a/pyproject.toml b/pyproject.toml index c788b78..ed6d4a6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,9 +12,9 @@ name = "rapids-dask-dependency" version = "24.12.00a0" description = "Dask and Distributed version pinning for RAPIDS" dependencies = [ - "dask==2024.9.0", - "distributed==2024.9.0", - "dask-expr==1.1.14", + "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" }