Skip to content

Commit

Permalink
Explicitly state no compatibility with flake8 >= 5.0.0 (#970)
Browse files Browse the repository at this point in the history
The pycodestyle and pyflakes requirements added here are to deal with
incompatibilities introduced in newer versions of those flake8 plugins
with the older flake8 requirement of this package.
  • Loading branch information
cottsay authored Aug 11, 2022
1 parent 00fc66b commit b274edb
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,13 @@
'PyYAML'],
'extras_require': {
'test': [
'flake8 >= 3.7',
'flake8 >= 3.7, < 5',
'flake8-class-newline',
'flake8_docstrings',
'flake8-import-order',
'pep8',
'pyflakes',
'pycodestyle < 2.9.0',
'pyflakes < 2.5.0',
'pytest'],
},
'author': 'Dirk Thomas',
Expand Down

0 comments on commit b274edb

Please sign in to comment.