Skip to content

Commit edbf945

Browse files
committed
Bump hacking
Change-Id: Ifc5073bd1a8182d81cc1e298a272223aab59fd42 Signed-off-by: Takashi Kajinami <kajinamit@oss.nttdata.com>
1 parent 745e927 commit edbf945

3 files changed

Lines changed: 7 additions & 10 deletions

File tree

cyborgclient/common/cliutils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -395,8 +395,8 @@ def get_service_type(f):
395395
return getattr(f, 'service_type', None)
396396

397397

398-
def pretty_choice_list(l):
399-
return ', '.join("'%s'" % i for i in l)
398+
def pretty_choice_list(choices):
399+
return ', '.join("'%s'" % choice for choice in choices)
400400

401401

402402
def exit(msg=''):

requirements.txt

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
# The order of packages is significant, because pip processes them in the order
2-
# of appearance. Changing the order has an impact on the overall integration
3-
# process, which may cause wedges in the gate later.
1+
# Requirements lower bounds listed here are our best effort to keep them up to
2+
# date but we do not test them so no guarantee of having them all correct. If
3+
# you find any incorrect lower bounds, let us know or propose a fix.
4+
45
pbr>=5.8.0 # Apache-2.0
56

67
keystoneauth1>=3.3.0 # Apache-2.0

test-requirements.txt

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
1-
# The order of packages is significant, because pip processes them in the order
2-
# of appearance. Changing the order has an impact on the overall integration
3-
# process, which may cause wedges in the gate later.
4-
5-
hacking>=3.0.1,<3.1.0 # Apache-2.0
1+
hacking>=8.0.0,<8.1.0 # Apache-2.0
62

73
coverage>=4.0,!=4.4 # Apache-2.0
84
python-subunit>=0.0.18 # Apache-2.0/BSD

0 commit comments

Comments
 (0)