-
Notifications
You must be signed in to change notification settings - Fork 93
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1059 from rapidsai/branch-22.12
- Loading branch information
Showing
48 changed files
with
1,710 additions
and
2,594 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
[flake8] | ||
exclude = docs, __init__.py | ||
max-line-length = 88 | ||
ignore = | ||
# Assigning lambda expression | ||
E731 | ||
# Ambiguous variable names | ||
E741 | ||
# line break before binary operator | ||
W503 | ||
# whitespace before : | ||
E203 | ||
# whitespace after , | ||
E231 |
This file was deleted.
Oops, something went wrong.
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
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
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 |
---|---|---|
@@ -1,3 +1 @@ | ||
include requirements.txt | ||
include versioneer.py | ||
include dask_cuda/_version.py |
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
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 |
---|---|---|
|
@@ -23,6 +23,9 @@ export GPUCI_CONDA_RETRY_SLEEP=30 | |
# `dask/label/dev` channel is removed. | ||
export INSTALL_DASK_MAIN=0 | ||
|
||
# Dask version to install when `INSTALL_DASK_MAIN=0` | ||
export DASK_STABLE_VERSION="2022.11.1" | ||
|
||
# Switch to project root; also root of repo checkout | ||
cd "$WORKSPACE" | ||
|
||
|
@@ -69,8 +72,17 @@ conda list --show-channel-urls | |
# FIX Added to deal with Anancoda SSL verification issues during conda builds | ||
conda config --set ssl_verify False | ||
|
||
pip install git+https://github.com/dask/[email protected] | ||
pip install git+https://github.com/dask/[email protected] | ||
# Install latest nightly version for dask and distributed if needed | ||
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 | ||
|
||
|
||
################################################################################ | ||
# BUILD - Package builds | ||
|
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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.