From 1e29193267cc9fc4e72e86422c85390e7f768aeb Mon Sep 17 00:00:00 2001 From: galipremsagar Date: Fri, 8 Apr 2022 08:46:32 -0700 Subject: [PATCH] unpin dask for development --- ci/gpu/build.sh | 2 +- conda/recipes/dask-cuda/meta.yaml | 4 ++-- requirements.txt | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/ci/gpu/build.sh b/ci/gpu/build.sh index dd8804e43..605504b85 100755 --- a/ci/gpu/build.sh +++ b/ci/gpu/build.sh @@ -34,7 +34,7 @@ export NUMPY_EXPERIMENTAL_ARRAY_FUNCTION=1 # Install dask and distributed from master branch. Usually needed during # development time and disabled before a new dask-cuda release. -export INSTALL_DASK_MASTER=0 +export INSTALL_DASK_MASTER=1 ################################################################################ # SETUP - Check environment diff --git a/conda/recipes/dask-cuda/meta.yaml b/conda/recipes/dask-cuda/meta.yaml index b8a80e9cb..dd225aa30 100644 --- a/conda/recipes/dask-cuda/meta.yaml +++ b/conda/recipes/dask-cuda/meta.yaml @@ -27,8 +27,8 @@ requirements: - setuptools run: - python - - dask==2022.03.0 - - distributed==2022.03.0 + - dask>=2022.03.0 + - distributed>=2022.03.0 - pynvml>=11.0.0 - numpy>=1.16.0 - numba>=0.53.1 diff --git a/requirements.txt b/requirements.txt index a5ec2e407..9ce138255 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ -dask==2022.03.0 -distributed==2022.03.0 +dask>=2022.03.0 +distributed>=2022.03.0 pynvml>=11.0.0 numpy>=1.16.0 numba>=0.53.1