Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[REVIEW] Pin dask and distributed for release #2940

Merged
merged 5 commits into from
Dec 1, 2022
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,9 @@ jobs:
skbuild-configure-options: "-DDETECT_CONDA_ENV=OFF -DCUGRAPH_BUILD_WHEELS=ON -DCPM_cugraph-ops_SOURCE=/project/cugraph-ops/"

# Always want to test against latest dask/distributed.
test-before-amd64: "pip install git+https://github.com/dask/dask.git@main git+https://github.com/dask/distributed.git@main git+https://github.com/rapidsai/[email protected]"
test-before-amd64: "pip install git+https://github.com/dask/dask.git@2022.11.1 git+https://github.com/dask/distributed.git@2022.11.1 git+https://github.com/rapidsai/[email protected]"
# On arm also need to install cupy from the specific webpage.
test-before-arm64: "pip install cupy-cuda11x -f https://pip.cupy.dev/aarch64 && pip install git+https://github.com/dask/dask.git@main git+https://github.com/dask/distributed.git@main git+https://github.com/rapidsai/[email protected]"
test-before-arm64: "pip install cupy-cuda11x -f https://pip.cupy.dev/aarch64 && pip install git+https://github.com/dask/dask.git@2022.11.1 git+https://github.com/dask/distributed.git@2022.11.1 git+https://github.com/rapidsai/[email protected]"
test-extras: test
test-unittest: "RAPIDS_DATASET_ROOT_DIR=`pwd`/datasets pytest -v ./python/cugraph/cugraph/tests"
secrets: inherit
4 changes: 2 additions & 2 deletions conda/environments/cugraph_dev_cuda11.2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ dependencies:
- cuda-python>=11.7.1,<12.0
- dask-cuda=22.12.*
- dask-cudf=22.12.*
- dask>=2022.9.2
- distributed>=2022.9.2
- dask==2022.11.1
- distributed==2022.11.1
- nccl>=2.9.9
- ucx-py=0.29.*
- ucx-proc=*=gpu
Expand Down
4 changes: 2 additions & 2 deletions conda/environments/cugraph_dev_cuda11.4.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ dependencies:
- cuda-python>=11.7.1,<12.0
- dask-cuda=22.12.*
- dask-cudf=22.12.*
- dask>=2022.9.2
- distributed>=2022.9.2
- dask==2022.11.1
- distributed==2022.11.1
- nccl>=2.9.9
- ucx-py=0.29.*
- ucx-proc=*=gpu
Expand Down
4 changes: 2 additions & 2 deletions conda/environments/cugraph_dev_cuda11.5.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ dependencies:
- cuda-python>=11.7.1,<12.0
- dask-cuda=22.12.*
- dask-cudf=22.12.*
- dask>=2022.9.2
- distributed>=2022.9.2
- dask==2022.11.1
- distributed==2022.11.1
- nccl>=2.9.9
- ucx-py=0.29.*
- ucx-proc=*=gpu
Expand Down
4 changes: 2 additions & 2 deletions conda/environments/cugraph_dev_cuda11.6.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ dependencies:
- cuda-python>=11.7.1,<12.0
- dask-cuda=22.12.*
- dask-cudf=22.12.*
- dask>=2022.9.2
- distributed>=2022.9.2
- dask==2022.11.1
- distributed==2022.11.1
- nccl>=2.9.9
- ucx-py=0.29.*
- ucx-proc=*=gpu
Expand Down
2 changes: 1 addition & 1 deletion conda/recipes/cugraph-pyg/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ requirements:
# FIXME: this pin can be removed once we move to the GitHub Actions build process
- setuptools<=65.2.0
run:
- distributed>=2022.9.2
- distributed==2022.11.1
- numba>=0.56.2
- numpy
- pytorch
Expand Down
2 changes: 1 addition & 1 deletion conda/recipes/cugraph-service/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ outputs:
- cupy >=9.5.0,<12.0.0a0
- numpy
- ucx-py 0.29.*
- distributed >=2022.9.2
- distributed ==2022.11.1
- dask-cuda {{ minor_version }}.*
- cudf {{ minor_version }}.*
- dask-cudf {{ minor_version }}.*
Expand Down
6 changes: 3 additions & 3 deletions conda/recipes/cugraph/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,9 @@ requirements:
- cudf={{ minor_version }}
- cupy >=9.5.0,<12.0.0a0
- dask-cudf {{ minor_version }}
- dask-cuda {{ minor_version }}
- dask>=2022.9.2
- distributed>=2022.9.2
- dask-c2022.11.1nor_version }}
- dask==2022.112022.11.1
- distributed==2022.11.0
galipremsagar marked this conversation as resolved.
Show resolved Hide resolved
- ucx-py {{ ucx_py_version }}
- ucx-proc=*=gpu
- {{ pin_compatible('cudatoolkit', max_pin='x', min_pin='x') }}
Expand Down
2 changes: 1 addition & 1 deletion python/cugraph-service/server/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"cupy >=9.5.0,<12.0.0a0",
"numpy",
"ucx-py",
"distributed >=2022.9.2",
"distributed ==2022.11.1",
"dask-cuda",
"thriftpy2",
]
Expand Down