From bc0c597055a645e7e43d12f57a434242302ca9b5 Mon Sep 17 00:00:00 2001 From: Felipe Reyes Date: Wed, 17 Aug 2022 09:33:27 -0400 Subject: [PATCH] Pin aiohttp<4.0.0 aiohttp doesn't compile with the gcc available in Ubuntu Jammy, the error raised is: aiohttp/_http_parser.c:16227:5: error: lvalue required as increment operand (cherry picked from commit 9eb432ebf426bdc3435b8512ee414fad2168acd9) --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index dce640bfe..52a574275 100644 --- a/setup.py +++ b/setup.py @@ -25,6 +25,7 @@ version = "0.0.1.dev1" install_require = [ + 'aiohttp<4.0.0', # aiohttp/_http_parser.c:16227:5: error: lvalue required as increment operand 'oslo.config<6.12.0', # pin at stable/train to retain Py3.5 support 'async_generator',