Updating requirements to master
* Update requirements and test-requirements according to global-requirements in master branch * requirements are sorted in alphabetical order * Fixed pep8 errors from new hacking Change-Id: I207ed7b4a357b911557a1a041c0f17923a95b43e
This commit is contained in:
parent
70d9209721
commit
6735d24b9d
@ -28,4 +28,4 @@ class ActionGenerator(object):
|
|||||||
return: list of actions dicts containing name, class,
|
return: list of actions dicts containing name, class,
|
||||||
description and parameter info.
|
description and parameter info.
|
||||||
"""
|
"""
|
||||||
pass
|
pass
|
||||||
|
@ -23,4 +23,4 @@ def all_generators():
|
|||||||
generators.HeatActionGenerator,
|
generators.HeatActionGenerator,
|
||||||
generators.NeutronActionGenerator,
|
generators.NeutronActionGenerator,
|
||||||
generators.CinderActionGenerator
|
generators.CinderActionGenerator
|
||||||
]
|
]
|
||||||
|
@ -214,4 +214,4 @@ class CinderAction(base.OpenStackAction):
|
|||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def _get_fake_client(cls):
|
def _get_fake_client(cls):
|
||||||
return cls._client_class()
|
return cls._client_class()
|
||||||
|
@ -35,4 +35,4 @@ class InspectUtilsTest(base.BaseTest):
|
|||||||
action_class = std_actions.SSHAction
|
action_class = std_actions.SSHAction
|
||||||
parameters_str = i_u.get_arg_list_as_str(action_class.__init__)
|
parameters_str = i_u.get_arg_list_as_str(action_class.__init__)
|
||||||
|
|
||||||
self.assertEqual("cmd, host, username, password", parameters_str)
|
self.assertEqual("cmd, host, username, password", parameters_str)
|
||||||
|
@ -50,4 +50,4 @@ EVALUATOR = V8Evaluator
|
|||||||
|
|
||||||
|
|
||||||
def evaluate(script, context):
|
def evaluate(script, context):
|
||||||
return EVALUATOR.evaluate(script, context)
|
return EVALUATOR.evaluate(script, context)
|
||||||
|
@ -48,4 +48,4 @@ def _generator_length(a):
|
|||||||
|
|
||||||
|
|
||||||
def to_str(value):
|
def to_str(value):
|
||||||
return str(value())
|
return str(value())
|
||||||
|
@ -1,34 +1,33 @@
|
|||||||
alembic>=0.7.2
|
alembic>=0.7.2
|
||||||
pbr>=0.6,!=0.7,<1.0
|
|
||||||
eventlet>=0.15.0
|
|
||||||
PyYAML>=3.1.0
|
|
||||||
pecan>=0.8.0
|
|
||||||
WSME>=0.6
|
|
||||||
amqplib>=0.6.1 # This is not in global requirements (master branch)
|
amqplib>=0.6.1 # This is not in global requirements (master branch)
|
||||||
argparse
|
argparse
|
||||||
Babel>=1.3
|
Babel>=1.3
|
||||||
iso8601>=0.1.9
|
|
||||||
posix_ipc
|
|
||||||
croniter>=0.3.4 # MIT License
|
croniter>=0.3.4 # MIT License
|
||||||
requests>=1.2.1,!=2.4.0
|
eventlet>=0.17.3
|
||||||
kombu>=2.4.8
|
iso8601>=0.1.9
|
||||||
oslo.config>=1.4.0,<1.10.0 # Apache-2.0
|
|
||||||
oslo.db>=1.0.0 # Apache-2.0
|
|
||||||
oslo.messaging>=1.4.0
|
|
||||||
oslo.utils>=1.2.0,<1.5.0 # Apache-2.0
|
|
||||||
paramiko>=1.13.0
|
|
||||||
ply==3.4
|
|
||||||
python-cinderclient>=1.1.0
|
|
||||||
python-heatclient>=0.2.9
|
|
||||||
python-keystoneclient>=0.10.0
|
|
||||||
python-neutronclient>=2.3.6,<3
|
|
||||||
python-novaclient>=2.18.0
|
|
||||||
python-glanceclient>=0.14.0
|
|
||||||
networkx>=1.8
|
|
||||||
six>=1.7.0
|
|
||||||
SQLAlchemy>=0.9.7,<=0.9.99
|
|
||||||
stevedore>=1.0.0 # Apache-2.0
|
|
||||||
yaql==0.2.6 # This is not in global requirements
|
|
||||||
jsonschema>=2.0.0,<3.0.0
|
jsonschema>=2.0.0,<3.0.0
|
||||||
|
keystonemiddleware>=1.5.0
|
||||||
|
kombu>=3.0.7
|
||||||
mock>=1.0
|
mock>=1.0
|
||||||
keystonemiddleware>=1.0.0
|
networkx>=1.8
|
||||||
|
oslo.config>=1.11.0 # Apache-2.0
|
||||||
|
oslo.db>=1.7.0 # Apache-2.0
|
||||||
|
oslo.messaging>=1.8.0
|
||||||
|
oslo.utils>=1.4.0 # Apache-2.0
|
||||||
|
paramiko>=1.13.0
|
||||||
|
pbr>=0.6,!=0.7,<1.0
|
||||||
|
pecan>=0.8.0
|
||||||
|
posix_ipc
|
||||||
|
python-cinderclient>=1.1.0
|
||||||
|
python-glanceclient>=0.15.0
|
||||||
|
python-heatclient>=0.3.0
|
||||||
|
python-keystoneclient>=1.1.0
|
||||||
|
python-neutronclient>=2.3.11,<3
|
||||||
|
python-novaclient>=2.22.0
|
||||||
|
PyYAML>=3.1.0
|
||||||
|
requests>=2.2.0,!=2.4.0
|
||||||
|
six>=1.9.0
|
||||||
|
SQLAlchemy>=0.9.7,<=0.9.99
|
||||||
|
stevedore>=1.3.0 # Apache-2.0
|
||||||
|
WSME>=0.6
|
||||||
|
yaql==0.2.6 # This is not in global requirements
|
||||||
|
@ -1,16 +1,16 @@
|
|||||||
hacking>=0.9.2,<0.10
|
|
||||||
coverage>=3.6
|
coverage>=3.6
|
||||||
pyflakes==0.8.1
|
|
||||||
pylint==0.25.2
|
|
||||||
sphinx>=1.1.2,!=1.2.0,<1.3
|
|
||||||
unittest2
|
|
||||||
oslotest
|
|
||||||
oslosphinx
|
|
||||||
sphinxcontrib-pecanwsme>=0.8
|
|
||||||
sphinxcontrib-httpdomain
|
|
||||||
docutils==0.9.1
|
docutils==0.9.1
|
||||||
fixtures>=0.3.14
|
fixtures>=0.3.14
|
||||||
nose
|
hacking>=0.10.0,<0.11
|
||||||
testrepository>=0.0.18
|
|
||||||
testtools>=0.9.34
|
|
||||||
lockfile>=0.8
|
lockfile>=0.8
|
||||||
|
nose
|
||||||
|
oslosphinx>=2.5.0,<2.6.0 # Apache-2.0
|
||||||
|
oslotest>=1.5.1,<1.6.0 # Apache-2.0
|
||||||
|
pyflakes==0.8.1
|
||||||
|
pylint>=1.3.0 # GNU GPL v2
|
||||||
|
sphinx>=1.1.2,!=1.2.0,!=1.3b1,<1.3
|
||||||
|
sphinxcontrib-httpdomain
|
||||||
|
sphinxcontrib-pecanwsme>=0.8
|
||||||
|
testrepository>=0.0.18
|
||||||
|
testtools>=0.9.36,!=1.2.0
|
||||||
|
unittest2
|
||||||
|
Loading…
x
Reference in New Issue
Block a user