Update travis to use pip3 not pip (python2).

Signed-off-by: Keith Rothman <537074+litghost@users.noreply.github.com>
This commit is contained in:
Keith Rothman 2018-09-27 08:59:27 -07:00
parent 7adb81b81c
commit 5bce5a31b8
1 changed files with 1 additions and 1 deletions

View File

@ -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; }