From 05935be64e2a2936a9e70961e2222bbe612858f7 Mon Sep 17 00:00:00 2001 From: Cagri Yonca Date: Tue, 10 Jun 2025 13:07:10 +0200 Subject: [PATCH] currency: aiohttp version is bounded for python 3.8 Signed-off-by: Cagri Yonca --- tests/requirements.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/requirements.txt b/tests/requirements.txt index ea441fdc..d1c6c1a8 100644 --- a/tests/requirements.txt +++ b/tests/requirements.txt @@ -1,7 +1,8 @@ -r requirements-minimal.txt aioamqp>=0.15.0 aiofiles>=0.5.0 -aiohttp>=3.8.3 +aiohttp<=3.10.11; python_version <= "3.8" +aiohttp>=3.8.3; python_version > "3.8" aio-pika>=9.5.2 boto3>=1.17.74 bottle>=0.12.25