Skip to content

Commit

Permalink
Install Dask + Distributed from main
Browse files Browse the repository at this point in the history
These recently dropped the `master` branch and switched to `main`. So
update the install steps to use `main` instead.
  • Loading branch information
jakirkham committed Mar 8, 2021
1 parent e72d776 commit 098f246
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions ci/cpu/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ 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/dask.git@master
pip install git+https://github.com/dask/distributed.git@master
pip install git+https://github.com/dask/dask.git@main
pip install git+https://github.com/dask/distributed.git@main

################################################################################
# BUILD - Package builds
Expand Down
10 changes: 5 additions & 5 deletions ci/gpu/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -72,12 +72,12 @@ conda info
conda config --show-sources
conda list --show-channel-urls

# Install the master version of dask and distributed
# Install the main version of dask and distributed
if [[ "${INSTALL_DASK_MASTER}" == 1 ]]; then
gpuci_logger "pip install git+https://github.com/dask/distributed.git@master --upgrade"
pip install "git+https://github.com/dask/distributed.git@master" --upgrade
gpuci_logger "pip install git+https://github.com/dask/dask.git@master --upgrade"
pip install "git+https://github.com/dask/dask.git@master" --upgrade
gpuci_logger "pip install git+https://github.com/dask/distributed.git@main --upgrade"
pip install "git+https://github.com/dask/distributed.git@main" --upgrade
gpuci_logger "pip install git+https://github.com/dask/dask.git@main --upgrade"
pip install "git+https://github.com/dask/dask.git@main" --upgrade
fi

gpuci_logger "Check versions"
Expand Down

0 comments on commit 098f246

Please sign in to comment.