Bump hacking to 0.9.x series

Hacking 0.9.0 had a minor bug so require 0.9.1 or higher.

In order to keep this patch to just a requirements bump, ignore new and
stricter hacking rules that are being triggered. Fixing up the code and
turning these on is out of scope of this patch and is for future patches.

Change-Id: Iafbd4adae8c6b446d53b62dfc490eab8e76a43ac
This commit is contained in:
Joe Gordon 2014-06-09 11:35:41 -07:00
parent 76e866a74b
commit 518b2766ba
2 changed files with 4 additions and 2 deletions

View File

@ -1,4 +1,4 @@
hacking>=0.8.0,<0.9
hacking>=0.9.1,<0.10
coverage>=3.6
discover
feedparser

View File

@ -57,8 +57,10 @@ sitepackages = False
# H803 skipped on purpose per list discussion.
# E125 is deliberately excluded. See https://github.com/jcrocholl/pep8/issues/126
# The rest of the ignores are TODOs
# New from hacking 0.9: E129, E131, E265, E713, H407, H405, H904
# Stricter in hacking 0.9: E111, E112, E113, E251, E303, F402, F812,H401,H402
ignore = E121,E122,E123,E124,E125,E126,E127,E128,E711,E712,F811,H803
ignore = E111,E112,E113,E121,E122,E123,E124,E125,E129,E126,E127,E128,E131,E251,E265,E303,E711,E712,E713,F811,F402,F812,H305,H307,H401,H402,H405,H803,H904
exclude = .venv,.git,.tox,dist,doc,*openstack/common*,*lib/python*,*egg,build,tools
[hacking]