Skip to content

Commit

Permalink
chore: upgrade to aiogram 3.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
y-young committed Sep 11, 2024
1 parent a2d1e6c commit f478504
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion nazurin/bot.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
from typing import List, Optional

from aiogram import Bot, flags
from aiogram.client.default import DefaultBotProperties
from aiogram.client.session.aiohttp import AiohttpSession
from aiogram.enums import ChatAction, ParseMode
from aiogram.exceptions import TelegramBadRequest
Expand Down Expand Up @@ -31,7 +32,7 @@ def __init__(self, *args, **kwargs):
super().__init__(
*args,
token=config.TOKEN,
parse_mode=ParseMode.HTML,
default=DefaultBotProperties(parse_mode=ParseMode.HTML),
session=session,
**kwargs,
)
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
aiogram~=3.6.0
aiogram~=3.13.0
aiohttp~=3.9.0
aiohttp-socks~=0.8.4
aiohttp_cors~=0.7.0
aiofiles~=23.2.1
aiojobs==1.2.0
tenacity~=8.2.2
environs~=9.3.4
environs~=11.0.0
async_lru~=2.0.2
loguru~=0.6.0
humanize~=4.8.0
Expand Down

0 comments on commit f478504

Please sign in to comment.