Skip to content

Commit

Permalink
Avoid newer flake8
Browse files Browse the repository at this point in the history
The new 6.0.0 contains a number of backwards incompatible changes
for which plugins need to be updated and configuration needs to be
updated.

Sadly the maintainer no longer accepts contributions or discussion
See PyCQA/flake8#1760
  • Loading branch information
arthurdejong committed Dec 3, 2022
1 parent b3d1e26 commit 6cbdcd7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tox.ini
Expand Up @@ -3,7 +3,7 @@ envlist = flake8,codespell,eslint

[testenv:flake8]
skip_install = true
deps = flake8
deps = flake8<6.0
flake8-author
flake8-blind-except
flake8-bugbear
Expand Down

2 comments on commit 6cbdcd7

@ScottMcCormack
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Just a heads up that the issue with your dependencies (AFAIK) is with the use of flake8-quotes

There is an open PR to fix this here: zheller/flake8-quotes#111

https://github.com/arthurdejong/webchat/actions/runs/3561026187/jobs/5981560876

@arthurdejong
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks. The other known issue is with the dropping of support for inline comments in setup.cfg.

Please sign in to comment.