From a41ecc4e46a2fcb8c14194434de7f1c123f8f409 Mon Sep 17 00:00:00 2001 From: galipremsagar Date: Mon, 8 Aug 2022 08:45:17 -0700 Subject: [PATCH] Unpin dask and distributed for development --- ci/gpu/build.sh | 4 ++-- conda/environments/raft_dev_cuda11.0.yml | 4 ++-- conda/environments/raft_dev_cuda11.2.yml | 4 ++-- conda/environments/raft_dev_cuda11.4.yml | 4 ++-- conda/environments/raft_dev_cuda11.5.yml | 4 ++-- conda/recipes/pyraft/meta.yaml | 4 ++-- 6 files changed, 12 insertions(+), 12 deletions(-) diff --git a/ci/gpu/build.sh b/ci/gpu/build.sh index 0fd85e935c..1c7b72bec7 100644 --- a/ci/gpu/build.sh +++ b/ci/gpu/build.sh @@ -79,8 +79,8 @@ fi # Install the master version of dask, distributed, and dask-ml gpuci_logger "Install the master version of dask and distributed" set -x -pip install "git+https://github.com/dask/distributed.git@2022.7.1" --upgrade --no-deps -pip install "git+https://github.com/dask/dask.git@2022.7.1" --upgrade --no-deps +pip install "git+https://github.com/dask/distributed.git@main" --upgrade --no-deps +pip install "git+https://github.com/dask/dask.git@main" --upgrade --no-deps set +x gpuci_logger "Check GPU usage" diff --git a/conda/environments/raft_dev_cuda11.0.yml b/conda/environments/raft_dev_cuda11.0.yml index e5355bc61c..004cb3c626 100644 --- a/conda/environments/raft_dev_cuda11.0.yml +++ b/conda/environments/raft_dev_cuda11.0.yml @@ -27,8 +27,8 @@ dependencies: - pip: - sphinx_markdown_tables - breathe - - git+https://github.com/dask/dask.git@2022.7.1 - - git+https://github.com/dask/distributed.git@2022.7.1 + - git+https://github.com/dask/dask.git@main + - git+https://github.com/dask/distributed.git@main # rapids-build-env, notebook-env and doc-env are defined in # https://docs.rapids.ai/maintainers/depmgmt/ diff --git a/conda/environments/raft_dev_cuda11.2.yml b/conda/environments/raft_dev_cuda11.2.yml index cdaf0ebcc4..b43df6e2be 100644 --- a/conda/environments/raft_dev_cuda11.2.yml +++ b/conda/environments/raft_dev_cuda11.2.yml @@ -27,8 +27,8 @@ dependencies: - pip: - sphinx_markdown_tables - breathe - - git+https://github.com/dask/dask.git@2022.7.1 - - git+https://github.com/dask/distributed.git@2022.7.1 + - git+https://github.com/dask/dask.git@main + - git+https://github.com/dask/distributed.git@main # rapids-build-env, notebook-env and doc-env are defined in # https://docs.rapids.ai/maintainers/depmgmt/ diff --git a/conda/environments/raft_dev_cuda11.4.yml b/conda/environments/raft_dev_cuda11.4.yml index c0d680a77a..fe76711b85 100644 --- a/conda/environments/raft_dev_cuda11.4.yml +++ b/conda/environments/raft_dev_cuda11.4.yml @@ -27,8 +27,8 @@ dependencies: - pip: - sphinx_markdown_tables - breathe - - git+https://github.com/dask/dask.git@2022.7.1 - - git+https://github.com/dask/distributed.git@2022.7.1 + - git+https://github.com/dask/dask.git@main + - git+https://github.com/dask/distributed.git@main # rapids-build-env, notebook-env and doc-env are defined in # https://docs.rapids.ai/maintainers/depmgmt/ diff --git a/conda/environments/raft_dev_cuda11.5.yml b/conda/environments/raft_dev_cuda11.5.yml index 04925b704b..f943de22cd 100644 --- a/conda/environments/raft_dev_cuda11.5.yml +++ b/conda/environments/raft_dev_cuda11.5.yml @@ -28,8 +28,8 @@ dependencies: - pip: - sphinx_markdown_tables - breathe - - git+https://github.com/dask/dask.git@2022.7.1 - - git+https://github.com/dask/distributed.git@2022.7.1 + - git+https://github.com/dask/dask.git@main + - git+https://github.com/dask/distributed.git@main # rapids-build-env, notebook-env and doc-env are defined in # https://docs.rapids.ai/maintainers/depmgmt/ diff --git a/conda/recipes/pyraft/meta.yaml b/conda/recipes/pyraft/meta.yaml index 7a2e8d6c49..025f96bf50 100644 --- a/conda/recipes/pyraft/meta.yaml +++ b/conda/recipes/pyraft/meta.yaml @@ -51,8 +51,8 @@ requirements: - ucx >={{ ucx_version }} - ucx-py {{ ucx_py_version }} - ucx-proc=*=gpu - - dask==2022.7.1 - - distributed==2022.7.1 + - dask>=2022.7.1 + - distributed>=2022.7.1 - cuda-python >=11.5,<11.7.1 - joblib >=0.11 - {{ pin_compatible('cudatoolkit', max_pin='x', min_pin='x') }}