-
Notifications
You must be signed in to change notification settings - Fork 906
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This PR unpins `dask` to fetch `main` branch as the fixes to `streamz` package are merged: python-streamz/streamz#423 Authors: - GALI PREM SAGAR (https://github.com/galipremsagar) Approvers: - AJ Schmidt (https://github.com/ajschmidt8) - Paul Taylor (https://github.com/trxcllnt) URL: #8533
- Loading branch information
1 parent
0196493
commit 83f08bd
Showing
5 changed files
with
21 additions
and
19 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
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 |
---|---|---|
|
@@ -101,9 +101,11 @@ function install_dask { | |
# Install the main version of dask, distributed, and streamz | ||
gpuci_logger "Install the main version of dask, distributed, and streamz" | ||
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 | ||
pip install "git+https://github.com/python-streamz/streamz.git" --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 | ||
# Need to uninstall streamz that is already in the env. | ||
pip uninstall -y streamz | ||
pip install "git+https://github.com/python-streamz/streamz.git@master" --upgrade --no-deps | ||
set +x | ||
} | ||
|
||
|
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