From 82f4977dff35372cdace9f2d516ee27a6209a3cb Mon Sep 17 00:00:00 2001 From: 21in7 Date: Mon, 30 Mar 2026 16:05:08 +0900 Subject: [PATCH] fix: upgrade aiohttp pin to resolve ccxt dependency conflict ccxt requires aiohttp>=3.10.11, was pinned to ==3.9.3. python-binance has no upper bound on aiohttp, so this is safe. Co-Authored-By: Claude Opus 4.6 (1M context) --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 01646bb..a29dec4 100644 --- a/requirements.txt +++ b/requirements.txt @@ -5,7 +5,7 @@ python-dotenv==1.0.0 httpx>=0.27.0 pytest>=8.1.0 pytest-asyncio>=0.24.0 -aiohttp==3.9.3 +aiohttp>=3.10.11 websockets==12.0 loguru==0.7.2 lightgbm>=4.3.0