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 79631d1Copy full SHA for 79631d1
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 WHEELHOST="travis-wheels.scikit-image.org"
3
+export WHEELHOUSE="http://${WHEELHOST}/"
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 --trusted-host $WHEELHOST --find-links $WHEELHOUSE $@
26
}
0 commit comments