Merge "Bump hacking to 1.1.0"
This commit is contained in:
commit
e2982c445d
@ -3,7 +3,7 @@
|
||||
# process, which may cause wedges in the gate later.
|
||||
|
||||
# Hacking should appear first in case something else depends on pep8
|
||||
hacking!=0.13.0,<0.14,>=0.12.0 # Apache-2.0
|
||||
hacking>=1.1.0 # Apache-2.0
|
||||
|
||||
coverage!=4.4,>=4.0 # Apache-2.0
|
||||
flake8-import-order==0.13 # LGPLv3
|
||||
|
6
tox.ini
6
tox.ini
@ -65,6 +65,12 @@ exclude = .venv,.git,.tox,dist,*lib/python*,*egg,build,node_modules,.tmp
|
||||
# H203 Use assertIs(Not)None to check for None
|
||||
# H904 Delay string interpolations at logging calls
|
||||
enable-extensions = H203,H904
|
||||
# W504 line break after binary operator
|
||||
# (W503 and W504 are incompatible and we need to choose one of them.
|
||||
# Existing codes follows W503, so we disable W504.)
|
||||
# F405 TEMPLATES may be undefined, or defined from star imports
|
||||
# (because it is not easy to avoid this in openstack_dashboard.test.settings)
|
||||
ignore = W504,F405
|
||||
max-complexity = 20
|
||||
|
||||
# flake8-import-order configurations
|
||||
|
Loading…
x
Reference in New Issue
Block a user