From b18104c9a74dea2af97e4660340e3c2a81d8976d Mon Sep 17 00:00:00 2001 From: Hui Peng Date: Mon, 12 Jun 2023 17:20:47 -0700 Subject: [PATCH] Pin aiohttp at version 3.8.4 Recently aiohttp package is upgraded to 4.0.x version, which breaks setup.py. This change fix the build issue by pinning it at version 3.8.4. --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index d774568..aeb550d 100644 --- a/setup.cfg +++ b/setup.cfg @@ -30,7 +30,7 @@ package_dir = bumble.apps = apps include-package-data = True install_requires = - aiohttp >= 3.8.4; platform_system!='Emscripten' + aiohttp ~= 3.8; platform_system!='Emscripten' appdirs >= 1.4 bt-test-interfaces >= 0.0.2 click >= 7.1.2; platform_system!='Emscripten'