Skip to content

Commit

Permalink
Merge pull request #1746 from PyCQA/bump-pycodestyle
Browse files Browse the repository at this point in the history
upgrade pycodestyle to 2.10
  • Loading branch information
asottile committed Nov 23, 2022
2 parents 647996c + 047e6f8 commit 8c06197
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 9 deletions.
2 changes: 1 addition & 1 deletion setup.cfg
Expand Up @@ -35,7 +35,7 @@ package_dir =
# https://flake8.pycqa.org/en/latest/internal/releases.html#releasing-flake8
install_requires =
mccabe>=0.7.0,<0.8.0
pycodestyle>=2.9.0,<2.10.0
pycodestyle>=2.10.0,<2.11.0
pyflakes>=2.5.0,<2.6.0
# 3.8.0's importlib.metadata is broken
python_requires = >=3.8.1
Expand Down
8 changes: 0 additions & 8 deletions src/flake8/plugins/pycodestyle.py
Expand Up @@ -26,11 +26,7 @@
from pycodestyle import missing_whitespace_around_operator as _missing_whitespace_around_operator # noqa: E501
from pycodestyle import module_imports_on_top_of_file as _module_imports_on_top_of_file # noqa: E501
from pycodestyle import python_3000_async_await_keywords as _python_3000_async_await_keywords # noqa: E501
from pycodestyle import python_3000_backticks as _python_3000_backticks
from pycodestyle import python_3000_has_key as _python_3000_has_key
from pycodestyle import python_3000_invalid_escape_sequence as _python_3000_invalid_escape_sequence # noqa: E501
from pycodestyle import python_3000_not_equal as _python_3000_not_equal
from pycodestyle import python_3000_raise_comma as _python_3000_raise_comma
from pycodestyle import tabs_obsolete as _tabs_obsolete
from pycodestyle import tabs_or_spaces as _tabs_or_spaces
from pycodestyle import trailing_blank_lines as _trailing_blank_lines
Expand Down Expand Up @@ -83,11 +79,7 @@ def pycodestyle_logical(
yield from _missing_whitespace_around_operator(logical_line, tokens)
yield from _module_imports_on_top_of_file(logical_line, indent_level, checker_state, noqa) # noqa: E501
yield from _python_3000_async_await_keywords(logical_line, tokens)
yield from _python_3000_backticks(logical_line)
yield from _python_3000_has_key(logical_line, noqa)
yield from _python_3000_invalid_escape_sequence(logical_line, tokens, noqa)
yield from _python_3000_not_equal(logical_line)
yield from _python_3000_raise_comma(logical_line)
yield from _whitespace_around_comma(logical_line)
yield from _whitespace_around_keywords(logical_line)
yield from _whitespace_around_named_parameter_equals(logical_line, tokens)
Expand Down

0 comments on commit 8c06197

Please sign in to comment.