From 938d60d036b234a185c4e708bfa25518a41cb896 Mon Sep 17 00:00:00 2001 From: Peter Andreas Entschev Date: Mon, 7 Jun 2021 14:28:52 -0700 Subject: [PATCH 1/2] Remove Dask version pin --- conda/recipes/dask-cuda/meta.yaml | 4 ++-- requirements.txt | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/conda/recipes/dask-cuda/meta.yaml b/conda/recipes/dask-cuda/meta.yaml index cadffb7e3..d65f8b6d2 100644 --- a/conda/recipes/dask-cuda/meta.yaml +++ b/conda/recipes/dask-cuda/meta.yaml @@ -27,8 +27,8 @@ requirements: - setuptools run: - python - - dask >=2.22.0,<=2021.5.1 - - distributed >=2.22.0,<2021.5.1 + - dask >=2.22.0 + - distributed >=2.22.0 - pynvml >=8.0.3 - numpy >=1.16.0 - numba >=0.53.1 diff --git a/requirements.txt b/requirements.txt index e74ea3ea4..bdb895ddd 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ -dask>=2.22.0,<=2021.5.1 -distributed>=2.22.0,<=2021.5.1 +dask>=2.22.0 +distributed>=2.22.0 pynvml>=8.0.3 numpy>=1.16.0 numba>=0.53.1 From 3db438186de923c2f81ea6155162d5d8a13fa47b Mon Sep 17 00:00:00 2001 From: Peter Andreas Entschev Date: Mon, 7 Jun 2021 14:29:05 -0700 Subject: [PATCH 2/2] Install Dask master in CI --- ci/gpu/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/gpu/build.sh b/ci/gpu/build.sh index e96d018ef..00333dd04 100755 --- a/ci/gpu/build.sh +++ b/ci/gpu/build.sh @@ -33,7 +33,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