From cb9fd0698b57e25b8048a5950f1e80d327f67208 Mon Sep 17 00:00:00 2001 From: Matthew Feickert Date: Wed, 3 Apr 2024 14:57:32 +0200 Subject: [PATCH] build: Require aiohttp v3.9.0+ (#789) * Provide a lower bound of v3.9.0 for aiohttp. --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 642f87cc..6f8ebb8a 100644 --- a/requirements.txt +++ b/requirements.txt @@ -6,4 +6,4 @@ tqdm >= 4.32.2 requests entrypoints tenacity >= 5.0.2 -aiohttp ==3.9.2; python_version=="3.12" +aiohttp >=3.9.0; python_version=="3.12"