Update hacking version

Use latest release 1.1.0 and compatible changes w.r.t pep8

Change-Id: Ibf57026264450c427916e8fba25f67c9f7aaa84e
Closes-Bug: #1815714
This commit is contained in:
ZhijunWei 2018-12-28 22:52:08 +08:00
parent f6907522f2
commit 362e1ed468
2 changed files with 3 additions and 2 deletions

View File

@ -1,7 +1,7 @@
# The order of packages is significant, because pip processes them in the order
# of appearance. Changing the order has an impact on the overall integration
# process, which may cause wedges in the gate later.
hacking!=0.13.0,<0.14,>=0.12.0 # Apache-2.0
hacking>=1.1.0,<1.2.0 # Apache-2.0
stestr>=2.0.0 # Apache-2.0
sphinx!=1.6.6,!=1.6.7,>=1.6.5 # BSD

View File

@ -43,9 +43,10 @@ commands =
[flake8]
# E123, E125 skipped as they are invalid PEP-8.
# E731 skipped as assign a lambda expression
show-source = True
ignore = E123,E125
ignore = E123,E125,E731
# H106: Dont put vim configuration in source files
# H203: Use assertIs(Not)None to check for None