Skip to content

Commit

Permalink
PycodestyleBear: Require pycodestyle 2.2
Browse files Browse the repository at this point in the history
PycodestyleBear was added (9004380) without an explicit
entry in requirements.txt, so it inherited the requirement
pycodestyle>=2.2 from autopep8.
  • Loading branch information
jayvdb committed Jan 1, 2017
1 parent ff114a4 commit d8be55a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion bears/python/PycodestyleBear.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class PycodestyleBear:
A wrapper for the tool ``pycodestyle`` formerly known as ``pep8``.
"""
LANGUAGES = {'Python', 'Python 2', 'Python 3'}
REQUIREMENTS = {PipRequirement('pycodestyle')}
REQUIREMENTS = {PipRequirement('pycodestyle', '2.2')}
AUTHORS = {'The coala developers'}
AUTHORS_EMAILS = {'[email protected]'}
LICENSE = 'AGPL-3.0'
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ coala>=0.10.0.dev20161217232433
munkres3~=1.0
pylint~=1.6
autopep8~=1.2
pycodestyle~=2.2
eradicate~=0.1.6
autoflake~=0.6.6
restructuredtext-lint~=0.17.2
Expand Down

0 comments on commit d8be55a

Please sign in to comment.