From 7cc53cde6f13b196c209337e4e7293170d0d31d7 Mon Sep 17 00:00:00 2001 From: Markus Unterwaditzer Date: Sat, 5 Apr 2014 14:53:25 +0200 Subject: [PATCH] Use wheels in travis --- install-deps.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/install-deps.sh b/install-deps.sh index a7a20da..b652472 100755 --- a/install-deps.sh +++ b/install-deps.sh @@ -1,10 +1,15 @@ #!/bin/sh echo "The shell is $SHELL" set -e -PIP_INSTALL="pip install --use-mirrors" [ -n "$DAV_SERVER" ] || DAV_SERVER=radicale_filesystem [ -n "$REQUIREMENTS" ] || REQUIREMENTS=release +if [ "$IS_TRAVIS" = "true" ]; then + PIP_INSTALL="pip install --use-wheel --no-index --find-links=http://dev.unterwaditzer.net/vdirsyncer/wheels/" + pip install --upgrade wheel pip setuptools +else: + PIP_INSTALL="pip install" +fi $PIP_INSTALL --editable . $PIP_INSTALL -r requirements.txt