Raise hacking checks to recent version

This raises the hacking constraint, which pulls in various newer linter
versions due to its own constraints, and fixes an issue the newer
linters identified.

Signed-off-by: Sean McGinnis <sean.mcginnis@gmail.com>
This commit is contained in:
Sean McGinnis 2020-08-12 08:47:52 -05:00 committed by Davanum Srinivas
parent 3a4863b1a6
commit de8a31fa7b
2 changed files with 2 additions and 1 deletions

View File

@ -74,6 +74,7 @@ def _try_import(import_str, default=None):
except ImportError:
return default
# These may or may not exist; so carefully import them if we can...
_eventlet = _try_import('eventlet')
_patcher = _try_import('eventlet.patcher')

View File

@ -2,7 +2,7 @@
# of appearance. Changing the order has an impact on the overall integration
# process, which may cause wedges in the gate later.
hacking>=0.12.0,!=0.13.0,<0.14 # Apache-2.0
hacking>=3.0,<3.1.0 # Apache-2.0
coverage>=4.0 # Apache-2.0
python-subunit>=0.0.18 # Apache-2.0/BSD