Fix cap for hacking in python 2.7

... so that we can keep Python 2.7 support during Ussuri.

Change-Id: Ic6cafc21efd6f7eacc43fcd59ccfb61ec765d251
This commit is contained in:
Takashi Kajinami 2020-04-16 11:53:41 +09:00
parent 271dae8106
commit 5250bc85b0
1 changed files with 2 additions and 1 deletions

View File

@ -2,7 +2,8 @@
# of appearance. Changing the order has an impact on the overall integration
# process, which may cause wedges in the gate later.
hacking>=3.0,<3.1.0 # Apache-2.0
hacking>=0.11.0,<0.12;python_version=='2.7' # Apache-2.0
hacking>=3.0,<3.1.0;python_version>='3.4' # Apache-2.0
coverage>=3.6
nose