From b0e4f2da886a12146fed22b5c49bc53c6dfad2c1 Mon Sep 17 00:00:00 2001 From: GALI PREM SAGAR Date: Fri, 10 Feb 2023 11:29:15 -0600 Subject: [PATCH] Unpin `dask` and `distributed` for development (#1110) This PR unpins `dask` and `distributed` for `23.04` development. xref: https://github.com/rapidsai/cudf/pull/12710 Authors: - GALI PREM SAGAR (https://github.com/galipremsagar) Approvers: - Peter Andreas Entschev (https://github.com/pentschev) - Ray Douglass (https://github.com/raydouglass) URL: https://github.com/rapidsai/dask-cuda/pull/1110 --- ci/cpu/build.sh | 2 +- ci/gpu/build.sh | 2 +- dependencies.yaml | 4 ++-- pyproject.toml | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/ci/cpu/build.sh b/ci/cpu/build.sh index b1b279641..bd819098f 100755 --- a/ci/cpu/build.sh +++ b/ci/cpu/build.sh @@ -21,7 +21,7 @@ export GPUCI_CONDA_RETRY_SLEEP=30 # Whether to keep `dask/label/dev` channel in the env. If INSTALL_DASK_MAIN=0, # `dask/label/dev` channel is removed. -export INSTALL_DASK_MAIN=0 +export INSTALL_DASK_MAIN=1 # Dask version to install when `INSTALL_DASK_MAIN=0` export DASK_STABLE_VERSION="2023.1.1" diff --git a/ci/gpu/build.sh b/ci/gpu/build.sh index edcc51d68..14b871818 100755 --- a/ci/gpu/build.sh +++ b/ci/gpu/build.sh @@ -35,7 +35,7 @@ export NUMPY_EXPERIMENTAL_ARRAY_FUNCTION=1 # Install dask and distributed from main branch. Usually needed during # development time and disabled before a new dask-cuda release. -export INSTALL_DASK_MAIN=0 +export INSTALL_DASK_MAIN=1 # Dask version to install when `INSTALL_DASK_MAIN=0` export DASK_STABLE_VERSION="2023.1.1" diff --git a/dependencies.yaml b/dependencies.yaml index bcd639a1c..bb99ea21a 100644 --- a/dependencies.yaml +++ b/dependencies.yaml @@ -95,8 +95,8 @@ dependencies: common: - output_types: [conda, requirements] packages: - - dask==2023.1.1 - - distributed==2023.1.1 + - dask>=2023.1.1 + - distributed>=2023.1.1 - numba>=0.54 - numpy>=1.18.0 - pandas>=1.0 diff --git a/pyproject.toml b/pyproject.toml index 58f156bb9..1d5c59e3b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -19,8 +19,8 @@ authors = [ license = { text = "Apache-2.0" } requires-python = ">=3.8" dependencies = [ - "dask ==2023.1.1", - "distributed ==2023.1.1", + "dask >=2023.1.1", + "distributed >=2023.1.1", "pynvml >=11.0.0", "numpy >=1.18.0", "numba >=0.54",