From 0d60af2508bf74df89b5b4e21d08fcbbd40f1279 Mon Sep 17 00:00:00 2001 From: Tim Burke Date: Tue, 23 Jan 2024 13:49:15 -0800 Subject: [PATCH] Prevent installation of known-broken eventlet See https://github.com/eventlet/eventlet/pull/890 It's a relatively minor breakage, triggered by clients hitting a funny corner of the HTTP spec, but it does prevent our unit tests from passing and may surprise some clients. Change-Id: Id29ba545e4ac7887c63fa62b75469988a2c6773c --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index e9d54faaf3..892fd5f79d 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,7 +2,7 @@ # of appearance. Changing the order has an impact on the overall integration # process, which may cause wedges in the gate later. -eventlet>=0.25.0 # MIT +eventlet>=0.25.0,!=0.34.3 # MIT greenlet>=0.3.2 PasteDeploy>=2.0.0 lxml>=3.4.1