Bump flake8-bugbear from 22.12.6 to 23.1.14 (#8062)

* Bump flake8-bugbear from 22.12.6 to 23.1.14

Bumps [flake8-bugbear](https://github.com/PyCQA/flake8-bugbear) from 22.12.6 to 23.1.14.
- [Release notes](https://github.com/PyCQA/flake8-bugbear/releases)
- [Commits](https://github.com/PyCQA/flake8-bugbear/compare/22.12.6...23.1.14)

---
updated-dependencies:
- dependency-name: flake8-bugbear
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com>
This commit is contained in:
dependabot[bot] 2023-01-16 16:25:18 +01:00 committed by GitHub
parent 413238d033
commit eae0eaff11
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 3 deletions

View File

@ -58,7 +58,7 @@ repos:
hooks:
- id: flake8
additional_dependencies:
[flake8-bugbear==22.12.6, flake8-typing-imports==1.14.0]
[flake8-bugbear==23.1.14, flake8-typing-imports==1.14.0]
exclude: *fixtures
- repo: local
hooks:

View File

@ -3,7 +3,7 @@
bandit==1.7.4
black==23.1a1
flake8>=5.0.0
flake8-bugbear==22.12.6
flake8-bugbear==23.1.14
flake8-typing-imports==1.14.0
isort==5.10.1
mypy==0.991

View File

@ -13,10 +13,12 @@ license_files =
# E203: Whitespace before ':'
# W503: Line break occurred before a binary operator
# E501: Line too long
# B028: consider using the `!r` conversion flag
ignore =
E203,
W503,
E501
E501,
B028,
max-line-length=88
max-complexity=39
# Required for flake8-typing-imports (v1.12.0)