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

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