Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8b8be4 commit b0d78e0Copy full SHA for b0d78e0
tools/travis_tools.sh
@@ -1,5 +1,6 @@
1
# Tools for working with travis-ci
2
-export WHEELHOUSE="http://travis-wheels.scikit-image.org/"
+export WHELLHOST="travis-wheels.scikit-image.org"
3
+export WHEELHOUSE="http://${WHELLHOST}/"
4
5
retry () {
6
# https://gist.github.com/fungusakafungus/1026804
@@ -21,5 +22,5 @@ retry () {
21
22
23
wheelhouse_pip_install() {
24
# Install pip requirements via travis wheelhouse
- retry pip install --timeout=60 --no-index --find-links $WHEELHOUSE $@
25
+ retry pip install --timeout=60 --no-index --find-links --trusted-host $WHELLHOST $WHEELHOUSE $@
26
}
0 commit comments