Switch to using pycodestyle instead of pep8
This commit is contained in:
parent
589b7237e9
commit
d1e5f1e0c8
2 changed files with 3 additions and 3 deletions
|
|
@ -89,7 +89,7 @@ case "$SWIGLANG" in
|
|||
travis_retry sudo apt-get -qq install php$VER-cli php$VER-dev
|
||||
;;
|
||||
"python")
|
||||
pip install --user pep8
|
||||
pip install --user pycodestyle
|
||||
if [[ "$PY3" ]]; then
|
||||
travis_retry sudo apt-get install -qq python3-dev
|
||||
fi
|
||||
|
|
|
|||
|
|
@ -895,9 +895,9 @@ else
|
|||
fi
|
||||
|
||||
if test -n "$PYINCLUDE" || test -n "$PY3INCLUDE" ; then
|
||||
AC_CHECK_PROGS(PEP8, pep8)
|
||||
AC_CHECK_PROGS(PEP8, pycodestyle)
|
||||
if test -n "$PEP8"; then
|
||||
AC_MSG_CHECKING(pep8 version)
|
||||
AC_MSG_CHECKING(pycodestyle version)
|
||||
pep8_version=`$PEP8 --version 2>/dev/null`
|
||||
AC_MSG_RESULT($pep8_version)
|
||||
fi
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue