From 706d91e7393de14b6ecef831fba4c386e5e6e42f Mon Sep 17 00:00:00 2001 From: Andrey Date: Tue, 26 Aug 2025 19:02:39 +0300 Subject: [PATCH] Update requirements.txt to streamline dependencies, adding aiogram and pytest-asyncio while removing unused packages. Organized sections for core dependencies, logging, testing, and development tools. --- requirements.txt | 30 ++++++++++++------------------ 1 file changed, 12 insertions(+), 18 deletions(-) diff --git a/requirements.txt b/requirements.txt index 6da9b91..3e6cd89 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,22 +1,16 @@ -APScheduler==3.10.4 -certifi~=2024.6.2 -charset-normalizer==3.3.2 -coverage==7.5.4 -exceptiongroup==1.2.1 -idna==3.7 -iniconfig==2.0.0 +# Core dependencies +aiogram~=3.10.0 + +# Logging loguru==0.7.2 -packaging==24.1 -pluggy==1.5.0 + +# Testing pytest==8.2.2 -pytz==2024.1 -requests==2.32.3 -six==1.16.0 -tomli==2.0.1 -tzlocal==5.2 -urllib3~=2.2.1 -pip~=23.2.1 +pytest-asyncio==1.1.0 +coverage==7.5.4 + +# Development tools +pluggy==1.5.0 attrs~=23.2.0 typing_extensions~=4.12.2 -aiohttp~=3.9.5 -aiogram~=3.10.0 \ No newline at end of file +emoji~=2.8.0 \ No newline at end of file