From 1345082feb08b50721ff05ead3668e61a15f2bb2 Mon Sep 17 00:00:00 2001 From: William Lachance Date: Fri, 21 Feb 2014 16:08:05 -0500 Subject: [PATCH] Upgrade pip version in bootstrap, use --allow-external which;r=me Should *hopefully* fix our travis ci problems! --- bootstrap.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/bootstrap.sh b/bootstrap.sh index 262f74d..91964b4 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -36,6 +36,9 @@ make -C src/videocapture/videocapture/decklink # Set a long timeout for pip, especially for travis testing export PIP_DEFAULT_TIMEOUT=120 +# Upgrade pip to latest (so we can use --allow-external on all platforms) +$VENV/bin/pip install --upgrade pip + # Install local deps -$VENV/bin/pip install -e src/eideticker +$VENV/bin/pip install --allow-external which -e src/eideticker $VENV/bin/pip install -e src/videocapture