8000 CI Fixes scipy-dev build instance (#19062) · scikit-learn/scikit-learn@def0e68 · GitHub
[go: up one dir, main page]

Skip to content

Commit def0e68

Browse files
authored
CI Fixes scipy-dev build instance (#19062)
1 parent 5946f8b commit def0e68

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

build_tools/azure/install.sh

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,11 @@ elif [[ "$DISTRIB" == "conda-pip-scipy-dev" ]]; then
9696
python -m pip install -U pip
9797
echo "Installing numpy and scipy master wheels"
9898
dev_anaconda_url=https://pypi.anaconda.org/scipy-wheels-nightly/simple
99-
pip install --pre --upgrade --timeout=60 --extra-index $dev_anaconda_url numpy scipy pandas
99+
pip install --pre --upgrade --timeout=60 --extra-index $dev_anaconda_url numpy pandas
100+
101+
# issue with metadata in scipy dev builds https://github.com/scipy/scipy/issues/13196
102+
# --use-deprecated=legacy-resolver needs to be included
103+
pip install --pre --upgrade --timeout=60 --extra-index $dev_anaconda_url scipy --use-deprecated=legacy-resolver
100104
pip install --pre cython
101105
setup_ccache
102106
echo "Installing joblib master"

0 commit comments

Comments
 (0)
0