Skip to content

Commit

Permalink
chore: upgrade flake8 to v5 (#166)
Browse files Browse the repository at this point in the history
* chore: upgrade flake8 to v5

* chore: add W503 to flake8 extend-ignore
  • Loading branch information
bchew committed Oct 3, 2022
1 parent 1d22fcc commit bc6bd1c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .flake8
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[flake8]
extend-ignore = C901, E203, E501
extend-ignore = C901, E203, E501, W503
max-line-length = 88
select = B,C,E,F,W,B950
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ repos:
- id: black
language_version: python3.10
- repo: https://github.com/PyCQA/flake8
rev: 4.0.1
rev: 5.0.4
hooks:
- id: flake8
2 changes: 1 addition & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-r requirements.txt
black==22.8.0
flake8==4.0.1
flake8==5.0.4
pre-commit==2.20.0

0 comments on commit bc6bd1c

Please sign in to comment.