Skip to content

Commit

Permalink
Trust travis whell house
Browse files Browse the repository at this point in the history
Needed to work with new versions of pip
  • Loading branch information
jenshnielsen committed Jul 14, 2015
1 parent f8b8be4 commit 82faebc
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tools/travis_tools.sh
@@ -1,5 +1,6 @@
# Tools for working with travis-ci
export WHEELHOUSE="http://travis-wheels.scikit-image.org/"
export WHEELHOST="travis-wheels.scikit-image.org"
export WHEELHOUSE="http://${WHEELHOST}/"

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

wheelhouse_pip_install() {
# Install pip requirements via travis wheelhouse
retry pip install --timeout=60 --no-index --find-links $WHEELHOUSE $@
retry pip install --timeout=60 --no-index --find-links --trusted-host $WHEELHOST $WHEELHOUSE $@
}

0 comments on commit 82faebc

Please sign in to comment.