Closed lqez closed 6 years ago
flake8 needs pycodestyle < 2.4.0, but setup.py only declare the version of flake8. Thus, tox tries to build with the latest pycodestyle == 2.4.0 and fails.
flake8
pycodestyle < 2.4.0
setup.py
tox
pycodestyle == 2.4.0
flake8
needspycodestyle < 2.4.0
, butsetup.py
only declare the version offlake8
. Thus,tox
tries to build with the latestpycodestyle == 2.4.0
and fails.