Skip to content

Commit 89c0f92

Browse files
author
Waldemar Bartikowski
committed
ANSPB-423 Replace pep8 with pycodestyle & update dependencies.
1 parent 696d0f3 commit 89c0f92

File tree

3 files changed

+16
-9
lines changed

3 files changed

+16
-9
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ deb:
1212
python setup.py --command-packages=stdeb.command bdist_deb
1313

1414
check:
15-
find . -name \*.py | xargs pep8 --first
16-
find bin -type f | xargs pep8 --first
15+
find . -name \*.py | xargs pycodestyle --first
16+
find bin -type f | xargs pycodestyle --first
1717

1818
test:
1919
nosetests -v

requirements.txt

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
1-
astroid==1.3.4
2-
logilab-common==0.63.2
3-
nose==1.3.4
4-
pep8==1.6.2
5-
pylint==1.4.1
6-
six==1.9.0
1+
astroid==2.4.1
2+
glibc-locale-tools==0.2.4
3+
isort==4.3.21
4+
lazy-object-proxy==1.4.3
5+
logilab-common==1.6.4
6+
mccabe==0.6.1
7+
nose==1.3.7
8+
pycodestyle==2.6.0
9+
pylint==2.5.2
10+
six==1.15.0
11+
toml==0.10.1
12+
typed-ast==1.4.1
13+
wrapt==1.12.1

.pep8 renamed to tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
[pep8]
1+
[pycodestyle]
22
ignore = E111,E114
33
max-line-length = 120

0 commit comments

Comments
 (0)