Bump keystoneclient requirement to 0.4.1

We need the latest keystoneclient version for trusts support to work
in heat, due to bug #1231483

Change-Id: I6f918caadf5a70e5d407f11906f7f6a8900b5ab6
This commit is contained in:
Steven Hardy 2013-10-17 17:27:07 +01:00
parent a94a666767
commit fa97a3a506
4 changed files with 4 additions and 4 deletions

View File

@ -67,7 +67,7 @@ python-cinderclient>=1.0.5
python-ceilometerclient>=1.0.5
python-heatclient>=0.2.3
python-glanceclient>=0.9.0
python-keystoneclient>=0.3.2
python-keystoneclient>=0.4.1
python-memcached
python-neutronclient>=2.3.0,<3
python-novaclient>=2.15.0

View File

@ -55,7 +55,7 @@ python-cinderclient>=1.0.4
python-ceilometerclient>=1.0.3
python-heatclient>=0.2.3
python-glanceclient>=0.9.0
python-keystoneclient>=0.3.2
python-keystoneclient>=0.4.1
python-memcached
python-neutronclient>=2.2.3,<3
python-novaclient>=2.12.0

View File

@ -74,7 +74,7 @@ class UpdateTest(testtools.TestCase):
reqs = _file_to_list(self.proj_file)
# ensure various updates take
self.assertIn("jsonschema>=1.0.0,!=1.4.0,<2", reqs)
self.assertIn("python-keystoneclient>=0.3.2", reqs)
self.assertIn("python-keystoneclient>=0.4.1", reqs)
self.assertIn("SQLAlchemy>=0.7,<=0.7.99", reqs)
def test_project_with_oslo(self):

View File

@ -77,7 +77,7 @@ class UpdateTestWithSuffix(testtools.TestCase):
reqs = _file_to_list("%s.%s" % (self.proj_file, 'global'))
# ensure various updates take
self.assertIn("jsonschema>=1.0.0,!=1.4.0,<2", reqs)
self.assertIn("python-keystoneclient>=0.3.2", reqs)
self.assertIn("python-keystoneclient>=0.4.1", reqs)
self.assertIn("SQLAlchemy>=0.7,<=0.7.99", reqs)
def test_project_with_oslo(self):