diff --git a/conda/recipes/rapids-dask-dependency/meta.yaml b/conda/recipes/rapids-dask-dependency/meta.yaml index 5806c50..b44c8f4 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 ==2024.7.1 - - dask-core ==2024.7.1 - - distributed ==2024.7.1 + - dask >=2024.7.1 + - dask-core >=2024.7.1 + - distributed >=2024.7.1 - dask-expr about: diff --git a/pyproject.toml b/pyproject.toml index f41f785..744841d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,9 +12,9 @@ name = "rapids-dask-dependency" version = "24.10.00a0" description = "Dask and Distributed version pinning for RAPIDS" dependencies = [ - "dask==2024.7.1", - "distributed==2024.7.1", - "dask-expr", + "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" }