From 6b1fe2da01a370bb1a8341b8b3f549916cccf59d Mon Sep 17 00:00:00 2001 From: Alf Gaida Date: Thu, 30 Mar 2017 00:33:06 +0200 Subject: [PATCH] Switch from pep8 to pycodestyle Reason: pycodestyle is the successor of pep8, same team, same program different name https://github.com/PyCQA/pycodestyle --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 80e45e944..7a2bfb55e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -16,8 +16,8 @@ notifications: install: - docker build -t calamares . - - pip install pep8 + - pip install pycodestyle script: - docker run -v $PWD:/build calamares bash -lc "cd /build && cmake -DWEBVIEW_FORCE_WEBKIT=1 -DKDE_INSTALL_USE_QT_SYS_PATHS=ON . && make -j2" - - pep8 $PWD + - pycodestyle $PWD