File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -96,7 +96,11 @@ elif [[ "$DISTRIB" == "conda-pip-scipy-dev" ]]; then
96
96
python -m pip install -U pip
97
97
echo " Installing numpy and scipy master wheels"
98
98
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
100
104
pip install --pre cython
101
105
setup_ccache
102
106
echo " Installing joblib master"
You can’t perform that action at this time.
0 commit comments