Switch to Hacking 0.8.x

This brings along Hacking requirements to match
other OpenStack projects. Since hacking already
requires the right pep8 pyflakes etc version,
those dependencies are not necessary to be specified
here.

Change-Id: Ifb575aa549bfd0288e44acda9a750ea40b9d14c2
This commit is contained in:
Dirk Mueller
2014-05-23 00:36:45 +02:00
parent f1f0cb64b2
commit c6383f1f16
2 changed files with 5 additions and 6 deletions

View File

@@ -1,8 +1,4 @@
# Install bounded pep8/pyflakes first, then let flake8 install
pep8==1.4.5
pyflakes>=0.7.2,<0.7.4
flake8==2.0
hacking>=0.5.6,<0.8
hacking>=0.8.0,<0.9
coverage>=3.6
hp3parclient>=2.0,<3.0

View File

@@ -40,6 +40,9 @@ deps = -r{toxinidir}/requirements.txt
commands = bash tools/lintstack.sh
[flake8]
ignore = E12,E711,E712,H302,H303,H304,H401,H402,H403,H404,F
# TODO: These are not intentionally disabled, reenable when fixed:
# H233: Python 3.x incompatible print operator
# H501: Do not use locals() for string formatting
ignore = E12,E711,E712,H233,H302,H303,H304,H401,H402,H403,H404,H501,F
builtins = _
exclude = .venv,.tox,dist,doc,openstack,*egg