From ff522ffbd6276ba4ea3308ebc9b371fd3d6dff40 Mon Sep 17 00:00:00 2001 From: Zack Cerza Date: Thu, 11 Aug 2016 15:30:57 -0600 Subject: [PATCH] Work around regression in openstacksdk 0.9.2 ... that caused `openstack ip floating list -f json` to fail and return "Connection failure that may be retried." Signed-off-by: Zack Cerza --- setup.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/setup.py b/setup.py index 5945b0b741..c6ff789b6a 100644 --- a/setup.py +++ b/setup.py @@ -76,6 +76,10 @@ setup( 'pyopenssl>=0.13', 'ndg-httpsclient', 'pyasn1', + # Work around regression in 0.9.2 that caused + # `openstack ip floating list -f json` to fail and return + # "Connection failure that may be retried." + 'openstacksdk != 0.9.2', # python-novaclient is specified here, even though it is # redundant, because python-openstackclient requires # Babel, and installs 2.3.3, which is forbidden by -- 2.39.5