Merge "Fixes the Python 3 dependencies and iterator"
This commit is contained in:
commit
686cc9f8ef
@ -11,7 +11,7 @@ pecan>=0.4.5
|
|||||||
oslo.db>=4.27.0 # Apache-2.0
|
oslo.db>=4.27.0 # Apache-2.0
|
||||||
oslo.log>=1.0.0
|
oslo.log>=1.0.0
|
||||||
pika>=0.9.14
|
pika>=0.9.14
|
||||||
python-openid
|
python3-openid
|
||||||
PyYAML>=3.1.0
|
PyYAML>=3.1.0
|
||||||
requests>=1.1
|
requests>=1.1
|
||||||
six>=1.7.0
|
six>=1.7.0
|
||||||
@ -28,3 +28,4 @@ apscheduler>=3.0.1,<3.1.0
|
|||||||
python_dateutil>=2.4.0
|
python_dateutil>=2.4.0
|
||||||
oslo.concurrency>=3.8.0 # Apache-2.0
|
oslo.concurrency>=3.8.0 # Apache-2.0
|
||||||
oslo.i18n>=2.1.0 # Apache-2.0
|
oslo.i18n>=2.1.0 # Apache-2.0
|
||||||
|
#launchpadlib # Only for migration
|
@ -39,4 +39,4 @@ class LaunchpadReader(object):
|
|||||||
return self.next()
|
return self.next()
|
||||||
|
|
||||||
def next(self):
|
def next(self):
|
||||||
return self.task_iterator.next()
|
return next(self.task_iterator)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user