ci: use python3 for flake8

'make pylint' fails if flake8 runs on python2.
This commit is contained in:
Jan Edmund Lazo 2019-10-26 20:26:56 -04:00
parent c3d81a4902
commit 3bee2f1604
No known key found for this signature in database
GPG Key ID: 64915E6E9F735B15
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ set -e
set -o pipefail
if [[ "${CI_TARGET}" == lint ]]; then
python -m pip -q install --user --upgrade flake8
python3 -m pip -q install --user --upgrade flake8
exit
fi