fc42cc6be7
hacking 1.0+ adds a couple of additional checks that are helpful as part of the transition to Python 3. However, hacking 1.1.0 incorporated flake8 2.6.x, which transitioned from pep8 to pycodestyle. Tempest provides some hacking extensions and these use pep8 imports. As things stand, projects that wish to use these hacking extensions must either constrain themselves to the same older hacking versions or install pep8 manually. Neither of these approaches is particularly attractive so instead transition to hacking 1.1.0 ourselves. This has the benefit of giving us the additional checks for Python 3. Change-Id: I09e3d2461366bb439bcb817149ce807a232acfbb
9 lines
360 B
Plaintext
9 lines
360 B
Plaintext
# 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>=1.1.0,<1.2.0 # Apache-2.0
|
|
mock>=2.0.0 # BSD
|
|
coverage!=4.4,>=4.0 # Apache-2.0
|
|
oslotest>=3.2.0 # Apache-2.0
|
|
flake8-import-order==0.11 # LGPLv3
|