From aa07423103f0593e040240313f94e89ad43e674c Mon Sep 17 00:00:00 2001 From: Russell Bryant Date: Thu, 21 Jan 2016 14:07:50 -0500 Subject: [PATCH] travis: Install six Python library. The travis-ci build is broken because the Python six library is not installed. Signed-off-by: Russell Bryant Tested-by: Joe Stringer Acked-by: Joe Stringer --- .travis/prepare.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis/prepare.sh b/.travis/prepare.sh index cfc1b174f..752be9fa3 100755 --- a/.travis/prepare.sh +++ b/.travis/prepare.sh @@ -2,3 +2,4 @@ git clone git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git cd sparse && make && make install && cd .. +pip install --disable-pip-version-check --user six