File tree Expand file tree Collapse file tree 4 files changed +4
-15
lines changed
Expand file tree Collapse file tree 4 files changed +4
-15
lines changed Original file line number Diff line number Diff line change 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.
41sphinx >= 2.0.0 ,!= 2.1.0 # BSD
52openstackdocstheme >= 2.2.0 # Apache-2.0
63reno >= 3.1.0 # Apache-2.0
Original file line number Diff line number Diff line change 11# Requirements lower bounds listed here are our best effort to keep them up to
22# 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-
5- # The order of packages is significant, because pip processes them in the order
6- # of appearance. Changing the order has an impact on the overall integration
7- # process, which may cause wedges in the gate later.
3+ # you find any incorrect lower bounds, let us know or propose a fix.
84
95pbr >= 3.1.1 # Apache-2.0
106cliff != 2.9.0 ,>= 2.8.0 # Apache-2.0
Original file line number Diff line number Diff line change 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>=7.0.0,<7.1.0 # Apache-2.0
62coverage>=4.5.1 # Apache-2.0
73python-subunit>=1.2.0 # Apache-2.0/BSD
84oslotest>=3.3.0 # Apache-2.0
Original file line number Diff line number Diff line change @@ -73,9 +73,9 @@ def _reformat(data):
7373 @staticmethod
7474 def _list2str (node ):
7575 for k , v in node .items ():
76- if type (v ) == list :
76+ if type (v ) is list :
7777 node [k ] = str (v )
78- if type (v ) == str and ":" in v :
78+ if type (v ) is str and ":" in v :
7979 node [k ] = '"' + v + '"'
8080
8181 @abc .abstractmethod
You can’t perform that action at this time.
0 commit comments