Skip to content

Commit

Permalink
Update pycodestyle required version to the latest minor version.
Browse files Browse the repository at this point in the history
  • Loading branch information
rlaverde committed Mar 7, 2017
1 parent e9dad98 commit c8748e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spyder/utils/codeanalysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,9 @@ def check_with_pyflakes(source_code, filename=None):
dependencies.add("pyflakes", _("Real-time code analysis on the Editor"),
required_version=PYFLAKES_REQVER)

PEP8_REQVER = '>=0.6'
PYCODESTYLE_REQVER = '>=2.3'
dependencies.add("pycodestyle", _("Real-time code style analysis on the Editor"),
required_version=PEP8_REQVER)
required_version=PYCODESTYLE_REQVER)


def is_pyflakes_installed():
Expand Down

0 comments on commit c8748e7

Please sign in to comment.