diff --git a/ci/benchmark/build.sh b/ci/benchmark/build.sh index ffa48797fe3..a8bc33e00bc 100755 --- a/ci/benchmark/build.sh +++ b/ci/benchmark/build.sh @@ -37,7 +37,7 @@ export GBENCH_BENCHMARKS_DIR="$WORKSPACE/cpp/build/gbenchmarks/" export LIBCUDF_KERNEL_CACHE_PATH="$HOME/.jitify-cache" # Dask & Distributed option to install main(nightly) or `conda-forge` packages. -export INSTALL_DASK_MAIN=0 +export INSTALL_DASK_MAIN=1 # Dask version to install when `INSTALL_DASK_MAIN=0` export DASK_STABLE_VERSION="2022.9.2" diff --git a/ci/cpu/build.sh b/ci/cpu/build.sh index 560de6db187..400a1ba4764 100755 --- a/ci/cpu/build.sh +++ b/ci/cpu/build.sh @@ -28,7 +28,7 @@ export CONDA_BLD_DIR="$WORKSPACE/.conda-bld" # 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 # Switch to project root; also root of repo checkout cd "$WORKSPACE" diff --git a/ci/gpu/build.sh b/ci/gpu/build.sh index 7eebd2bb91d..afcc80a6803 100755 --- a/ci/gpu/build.sh +++ b/ci/gpu/build.sh @@ -32,7 +32,7 @@ export MINOR_VERSION=`echo $GIT_DESCRIBE_TAG | grep -o -E '([0-9]+\.[0-9]+)'` unset GIT_DESCRIBE_TAG # Dask & Distributed option to install main(nightly) or `conda-forge` packages. -export INSTALL_DASK_MAIN=0 +export INSTALL_DASK_MAIN=1 # Dask version to install when `INSTALL_DASK_MAIN=0` export DASK_STABLE_VERSION="2022.9.2" diff --git a/conda/environments/cudf_dev_cuda11.5.yml b/conda/environments/cudf_dev_cuda11.5.yml index d7a762e00f9..142d3c7d9cb 100644 --- a/conda/environments/cudf_dev_cuda11.5.yml +++ b/conda/environments/cudf_dev_cuda11.5.yml @@ -49,8 +49,8 @@ dependencies: - pydocstyle=6.1.1 - typing_extensions - pre-commit - - dask==2022.9.2 - - distributed==2022.9.2 + - dask>=2022.9.2 + - distributed>=2022.9.2 - streamz - arrow-cpp=9 - dlpack>=0.5,<0.6.0a0 diff --git a/conda/recipes/custreamz/meta.yaml b/conda/recipes/custreamz/meta.yaml index 596e5fde940..989f8855533 100644 --- a/conda/recipes/custreamz/meta.yaml +++ b/conda/recipes/custreamz/meta.yaml @@ -29,8 +29,8 @@ requirements: - python - streamz - cudf ={{ version }} - - dask==2022.9.2 - - distributed==2022.9.2 + - dask>=2022.9.2 + - distributed>=2022.9.2 - python-confluent-kafka >=1.7.0,<1.8.0a0 - cudf_kafka ={{ version }} diff --git a/conda/recipes/dask-cudf/meta.yaml b/conda/recipes/dask-cudf/meta.yaml index 2d95151018b..1c718c0e995 100644 --- a/conda/recipes/dask-cudf/meta.yaml +++ b/conda/recipes/dask-cudf/meta.yaml @@ -24,14 +24,14 @@ requirements: host: - python - cudf ={{ version }} - - dask==2022.9.2 - - distributed==2022.9.2 + - dask>=2022.9.2 + - distributed>=2022.9.2 - cudatoolkit ={{ cuda_version }} run: - python - cudf ={{ version }} - - dask==2022.9.2 - - distributed==2022.9.2 + - dask>=2022.9.2 + - distributed>=2022.9.2 - {{ pin_compatible('cudatoolkit', max_pin='x', min_pin='x') }} test: # [linux64] diff --git a/python/dask_cudf/setup.py b/python/dask_cudf/setup.py index 54b8f69c6d9..4fa2af89b9d 100644 --- a/python/dask_cudf/setup.py +++ b/python/dask_cudf/setup.py @@ -9,8 +9,8 @@ install_requires = [ "cudf", - "dask==2022.9.2", - "distributed==2022.9.2", + "dask>=2022.9.2", + "distributed>=2022.9.2", "fsspec>=0.6.0", "numpy", "pandas>=1.0,<1.6.0dev0",