Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(PEP8): pin flake8 until its plugins have caught up #2133

Merged
merged 2 commits into from
Nov 27, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 4 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,8 @@ commands = {[smoke-test]commands}
# --------------------------------------------------------------------

[testenv:pep8]
deps = flake8>=3.7.0
# TODO(vytas): Unpin flake8 when the below plugins have caught up.
deps = flake8<6.0
flake8-quotes
flake8-import-order
commands = flake8 []
Expand All @@ -273,7 +274,8 @@ commands = flake8 \
[]

[testenv:pep8-examples]
deps = flake8
# TODO(vytas): Unpin flake8 when the below plugins have caught up.
deps = flake8<6.0
flake8-quotes
flake8-import-order

Expand Down