Skip to content

Commit 529c0d3

Browse files
authored
Merge pull request #667 from micw523/k8s_pep8
change pep8 into pycodestyle since pep8 is depreciated
2 parents 3fb2be1 + 6ea777e commit 529c0d3

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ matrix:
1212
- python: 2.7
1313
env: TOXENV=py27-functional
1414
- python: 2.7
15-
env: TOXENV=update-pep8
15+
env: TOXENV=update-pycodestyle
1616
- python: 2.7
1717
env: TOXENV=docs
1818
- python: 2.7

scripts/update-pep8.sh scripts/update-pycodestyle.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ if [[ -z ${ENV} ]]; then
4949
trap "deactivate" EXIT SIGINT
5050

5151
echo "--- Updating tools"
52-
pip install --upgrade pep8
52+
pip install --upgrade pycodestyle
5353
pip install --upgrade autopep8
5454
pip install --upgrade isort
5555
fi
@@ -70,10 +70,10 @@ for SOURCE in $SOURCES; do
7070
isort -y $SOURCE
7171
done
7272

73-
echo "--- check pep8 (all need to be fixed manually)"
73+
echo "--- check pycodestyle (all need to be fixed manually)"
7474
set +o errexit
7575
for SOURCE in $SOURCES; do
76-
pep8 $SOURCE
76+
pycodestyle $SOURCE
7777
done
7878

7979
if [[ ! -z ${ENV} ]]; then

test-requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ mock>=2.0.0
88
sphinx>=1.2.1,!=1.3b1,<1.4 # BSD
99
recommonmark
1010
codecov>=1.4.0
11-
pep8
11+
pycodestyle
1212
autopep8
1313
isort

tox.ini

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ commands =
1515
commands =
1616
python setup.py build_sphinx
1717

18-
[testenv:update-pep8]
18+
[testenv:update-pycodestyle]
1919
commands =
20-
{toxinidir}/scripts/update-pep8.sh
20+
{toxinidir}/scripts/update-pycodestyle.sh
2121

2222
[testenv:py27-functional]
2323
commands =

0 commit comments

Comments
 (0)