Bump hacking

... because hacking 3.0.x is too old.

A few checks are disabled because these detect invalid problems.

Change-Id: I268ae097eecd4c3562b1005658cf2927579659d0
This commit is contained in:
Takashi Kajinami 2024-01-25 22:18:25 +09:00
parent 34aa8194af
commit ddd79e2afc
2 changed files with 8 additions and 5 deletions

View File

@ -1,5 +1,5 @@
hacking>=3.0.1,<3.1.0 # Apache-2.0
flake8-docstrings==1.6.0 # MIT
hacking>=6.1.0,<6.2.0 # Apache-2.0
flake8-import-order>=0.18.0,<0.19.0 # LGPLv3
coverage!=4.4,>=4.0 # Apache-2.0
fixtures>=3.0.0 # Apache-2.0/BSD

View File

@ -57,7 +57,10 @@ show-source = True
# D208: Docstring is over-indented
# D400: First line should end with a period
# D401: First line should be in imperative mood
# W503 line break before binary operator
# W504 line break after binary operator
ignore = H405,D100,D101,D102,D103,D104,D105,D107,D200,D202,D203,D204,D205,D208,D400,D401,W503,W504
# I100: Import statements are in the wrong order.
# I201: Missing newline between import groups.
# I202: Additional newline in a group of imports.
# W503: line break before binary operator
# W504: line break after binary operator
ignore = H405,D100,D101,D102,D103,D104,D105,D107,D200,D202,D203,D204,D205,D208,D400,D401,I100,I201,I202,W503,W504
exclude = .tox,dist,doc,*.egg,build