From 6ac297ded9b83a86b2729c3e2e926b1940feafc4 Mon Sep 17 00:00:00 2001 From: Sudar Muthu Date: Tue, 9 Feb 2016 15:45:02 +0530 Subject: [PATCH] Don't upgrade setuptools while bootstrap travis environment For some reason the command `pip install --upgrade setuptools` fails in the new travis build infrastructure. You can see the full error log in #404 Fix #404 --- tests/script/bootstrap/common.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/script/bootstrap/common.sh b/tests/script/bootstrap/common.sh index a6b6415..c3cd90e 100644 --- a/tests/script/bootstrap/common.sh +++ b/tests/script/bootstrap/common.sh @@ -184,7 +184,6 @@ if [ -z $COMMON_SOURCED ]; then PIP_SUDO_CMD=$SUDO_CMD fi - $PIP_SUDO_CMD pip install --upgrade setuptools $PIP_SUDO_CMD pip install --src dependencies --pre -Ur $BOOTSTRAP_DIR/pip-requirements.txt COMMON_SOURCED=1