Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit b0d78e0

Browse files
committed
Trust travis whell house
Needed to work with new versions of pip
1 parent f8b8be4 commit b0d78e0

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

tools/travis_tools.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# Tools for working with travis-ci
2-
export WHEELHOUSE="http://travis-wheels.scikit-image.org/"
2+
export WHELLHOST="travis-wheels.scikit-image.org"
3+
export WHEELHOUSE="http://${WHELLHOST}/"
34

45
retry () {
56
# https://gist.github.com/fungusakafungus/1026804
@@ -21,5 +22,5 @@ retry () {
2122

2223
wheelhouse_pip_install() {
2324
# Install pip requirements via travis wheelhouse
24-
retry pip install --timeout=60 --no-index --find-links $WHEELHOUSE $@
25+
retry pip install --timeout=60 --no-index --find-links --trusted-host $WHELLHOST $WHEELHOUSE $@
2526
}

0 commit comments

Comments
 (0)