-
Notifications
You must be signed in to change notification settings - Fork 197
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This PR relaxes the pinnings of `dask` and `distributed` for `22.12` development. xref: rapidsai/cudf#11859 Authors: - GALI PREM SAGAR (https://github.com/galipremsagar) Approvers: - Joseph (https://github.com/jolorunyomi) URL: #886
- Loading branch information
1 parent
3cc8ba8
commit a44ea33
Showing
6 changed files
with
30 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,6 +33,12 @@ unset GIT_DESCRIBE_TAG | |
# ucx-py version | ||
export UCX_PY_VERSION='0.29.*' | ||
|
||
# Whether to install dask nightly or stable packages. | ||
export INSTALL_DASK_MAIN=1 | ||
|
||
# Dask version to install when `INSTALL_DASK_MAIN=0` | ||
export DASK_STABLE_VERSION="2022.9.2" | ||
|
||
################################################################################ | ||
# SETUP - Check environment | ||
################################################################################ | ||
|
@@ -80,11 +86,17 @@ if hasArg --skip-tests; then | |
exit 0 | ||
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/[email protected]" --upgrade --no-deps | ||
pip install "git+https://github.com/dask/[email protected]" --upgrade --no-deps | ||
# Install latest nightly version for dask and distributed depending on `INSTALL_DASK_MAIN` | ||
if [[ "${INSTALL_DASK_MAIN}" == 1 ]]; then | ||
gpuci_logger "Installing dask and distributed from dask nightly channel" | ||
gpuci_mamba_retry install -c dask/label/dev \ | ||
"dask/label/dev::dask" \ | ||
"dask/label/dev::distributed" | ||
else | ||
gpuci_logger "gpuci_mamba_retry install conda-forge::dask==${DASK_STABLE_VERSION} conda-forge::distributed==${DASK_STABLE_VERSION} conda-forge::dask-core==${DASK_STABLE_VERSION} --force-reinstall" | ||
gpuci_mamba_retry install conda-forge::dask==${DASK_STABLE_VERSION} conda-forge::distributed==${DASK_STABLE_VERSION} conda-forge::dask-core==${DASK_STABLE_VERSION} --force-reinstall | ||
fi | ||
set +x | ||
|
||
gpuci_logger "Check GPU usage" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,7 @@ channels: | |
- rapidsai | ||
- nvidia | ||
- rapidsai-nightly | ||
- dask/label/dev | ||
- conda-forge | ||
dependencies: | ||
- c-compiler | ||
|
@@ -13,6 +14,8 @@ dependencies: | |
- clang-tools=11.1.0 | ||
- cython>=0.29,<0.30 | ||
- cmake>=3.23.1 | ||
- dask>=2022.9.2 | ||
- distributed>=2022.9.2 | ||
- scikit-build>=0.13.1 | ||
- rapids-build-env=22.12.* | ||
- rapids-notebook-env=22.12.* | ||
|
@@ -30,8 +33,6 @@ dependencies: | |
- pip: | ||
- sphinx_markdown_tables | ||
- breathe | ||
- git+https://github.com/dask/[email protected] | ||
- git+https://github.com/dask/[email protected] | ||
|
||
# rapids-build-env, notebook-env and doc-env are defined in | ||
# https://docs.rapids.ai/maintainers/depmgmt/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,7 @@ channels: | |
- rapidsai | ||
- nvidia | ||
- rapidsai-nightly | ||
- dask/label/dev | ||
- conda-forge | ||
dependencies: | ||
- c-compiler | ||
|
@@ -13,6 +14,8 @@ dependencies: | |
- clang-tools=11.1.0 | ||
- cython>=0.29,<0.30 | ||
- cmake>=3.23.1 | ||
- dask>=2022.9.2 | ||
- distributed>=2022.9.2 | ||
- scikit-build>=0.13.1 | ||
- rapids-build-env=22.12.* | ||
- rapids-notebook-env=22.12.* | ||
|
@@ -30,8 +33,6 @@ dependencies: | |
- pip: | ||
- sphinx_markdown_tables | ||
- breathe | ||
- git+https://github.com/dask/[email protected] | ||
- git+https://github.com/dask/[email protected] | ||
|
||
# rapids-build-env, notebook-env and doc-env are defined in | ||
# https://docs.rapids.ai/maintainers/depmgmt/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,7 @@ channels: | |
- rapidsai | ||
- nvidia | ||
- rapidsai-nightly | ||
- dask/label/dev | ||
- conda-forge | ||
dependencies: | ||
- c-compiler | ||
|
@@ -13,6 +14,8 @@ dependencies: | |
- clang-tools=11.1.0 | ||
- cython>=0.29,<0.30 | ||
- cmake>=3.23.1 | ||
- dask>=2022.9.2 | ||
- distributed>=2022.9.2 | ||
- scikit-build>=0.13.1 | ||
- rapids-build-env=22.12.* | ||
- rapids-notebook-env=22.12.* | ||
|
@@ -30,8 +33,6 @@ dependencies: | |
- pip: | ||
- sphinx_markdown_tables | ||
- breathe | ||
- git+https://github.com/dask/[email protected] | ||
- git+https://github.com/dask/[email protected] | ||
|
||
# rapids-build-env, notebook-env and doc-env are defined in | ||
# https://docs.rapids.ai/maintainers/depmgmt/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,7 @@ channels: | |
- rapidsai | ||
- nvidia | ||
- rapidsai-nightly | ||
- dask/label/dev | ||
- conda-forge | ||
dependencies: | ||
- c-compiler | ||
|
@@ -14,6 +15,8 @@ dependencies: | |
- clang-tools=11.1.0 | ||
- cython>=0.29,<0.30 | ||
- cmake>=3.23.1 | ||
- dask>=2022.9.2 | ||
- distributed>=2022.9.2 | ||
- scikit-build>=0.13.1 | ||
- rapids-build-env=22.12.* | ||
- rapids-notebook-env=22.12.* | ||
|
@@ -31,8 +34,6 @@ dependencies: | |
- pip: | ||
- sphinx_markdown_tables | ||
- breathe | ||
- git+https://github.com/dask/[email protected] | ||
- git+https://github.com/dask/[email protected] | ||
|
||
# rapids-build-env, notebook-env and doc-env are defined in | ||
# https://docs.rapids.ai/maintainers/depmgmt/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters