Skip to content
Merged
Changes from all 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
13 changes: 8 additions & 5 deletions ci/install-upstream-wheels.sh
Original file line number Diff line number Diff line change
@@ -1,24 +1,27 @@
#!/usr/bin/env bash

set -e
set -u
set -o pipefail

# forcibly remove packages to avoid artifacts
conda uninstall -y --force \
cartopy \
matplotlib-base \
numpy \
packaging \
pandas \
shapely \
xarray

# to limit the runtime of Upstream CI
python -m pip install \
-i https://pypi.anaconda.org/scientific-python-nightly-wheels/simple \
--no-deps \
--pre \
--upgrade \
python -m pip install -i https://pypi.anaconda.org/scientific-python-nightly-wheels/simple --no-deps --pre \
matplotlib \
numpy \
pandas \
shapely \
xarray

python -m pip install \
--no-deps \
--upgrade \
Expand Down
Loading