From 5bce5a31b86c41c2f771b57e21c33393941ec11a Mon Sep 17 00:00:00 2001 From: Keith Rothman <537074+litghost@users.noreply.github.com> Date: Thu, 27 Sep 2018 08:59:27 -0700 Subject: [PATCH] Update travis to use pip3 not pip (python2). Signed-off-by: Keith Rothman <537074+litghost@users.noreply.github.com> --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 38a0fb70..4484ebfd 100644 --- a/.travis.yml +++ b/.travis.yml @@ -27,7 +27,7 @@ matrix: packages: - clang-format-3.9 install: - - pip install --user -r requirements.txt + - pip3 install --user -r requirements.txt script: - make format - test $(git status --porcelain | wc -l) -eq 0 || { git diff; false; }