From 4aad363fe41725c3267981989d987d6257169a6f Mon Sep 17 00:00:00 2001 From: Matt Riedemann Date: Mon, 23 Jul 2018 15:44:16 -0400 Subject: [PATCH] Blacklist greenlet 0.4.14 Due to an issue introduced with greenlet 0.4.14 and gcc on ppc64le systems, we can't run powerkvm or powervm third party CI, so this change blacklists the 0.4.14 version until the issue [1] is resolved. The related upper-constraints change is at [2]. [1] https://github.com/python-greenlet/greenlet/issues/136 [2] https://review.openstack.org/584881/ Depends-On: https://review.openstack.org/584881 Change-Id: I3899a0597c75f19cf55d696790ac31a5103db18f --- requirements.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 2e1f9246a8ab..520b4b31b0bb 100644 --- a/requirements.txt +++ b/requirements.txt @@ -12,7 +12,9 @@ lxml!=3.7.0,>=3.4.1 # BSD Routes>=2.3.1 # MIT cryptography>=2.1 # BSD/Apache-2.0 WebOb>=1.8.2 # MIT -greenlet>=0.4.10 # MIT +# NOTE(mriedem): greenlet 0.4.14 does not work with older versions of gcc on +# ppc64le systems, see https://github.com/python-greenlet/greenlet/issues/136. +greenlet>=0.4.10,!=0.4.14 # MIT PasteDeploy>=1.5.0 # MIT Paste>=2.0.2 # MIT PrettyTable<0.8,>=0.7.1 # BSD