Update pycodestyle to 2.6.0 and drop python2 support
Changelog:
- Fix detection inside async def
- Fix false positive with chained is not
- Fix false-negative with decorated functions
- Allow two blank lines after a block of one-liners
Differential D9622
Update pycodestyle to 2.6.0 and drop python2 support Authored by xulongwu4 on Sep 10 2020, 2:19 AM. Tags None Referenced Files
Details
Update pycodestyle to 2.6.0 and drop python2 support Changelog:
Diff Detail
Event TimelineComment Actions @algent autopep8 is also updated to have compatible versions with pycodestyle. mutagen uses pycodestyle and pyflakes only for code quality check, but it has no functional dependency. mutagen builds successfully with new versions of pycodestyle and the python3 part of unit tests passed. The python2 part of unit tests failed because the drop of python2 support in pycodestyle. Comment Actions I think we should look into dropping python2 support in mutagen then. Otherwise, LGTM. Thanks! |