Update deps

pull/1/head
hikariatama 2022-12-30 19:58:57 +00:00
parent c3c8eefe38
commit da43a62fda
3 changed files with 9 additions and 7 deletions

View File

@ -44,7 +44,7 @@ else:
try:
import telethon
if tuple(map(int, telethon.__version__.split("."))) < (1, 24, 13):
if tuple(map(int, telethon.__version__.split("."))) < (1, 24, 14):
raise ImportError
except ImportError:
print("🔄 Installing Hikka-TL...")
@ -69,7 +69,7 @@ else:
try:
import pyrogram
if tuple(map(int, pyrogram.__version__.split("."))) < (2, 0, 62):
if tuple(map(int, pyrogram.__version__.split("."))) < (2, 0, 63):
raise ImportError
except ImportError:
print("🔄 Installing Hikka-Pyro...")

View File

@ -928,9 +928,11 @@ def get_platform_emoji() -> str:
:return: Emoji entity in string
"""
BASE = "".join(
"<emoji document_id={}>🌘</emoji>",
"<emoji document_id=5195311729663286630>🌘</emoji>",
"<emoji document_id=5195045669324201904>🌘</emoji>",
(
"<emoji document_id={}>🌘</emoji>",
"<emoji document_id=5195311729663286630>🌘</emoji>",
"<emoji document_id=5195045669324201904>🌘</emoji>",
)
)
if "MIYAHOST" in os.environ:

View File

@ -1,5 +1,5 @@
hikka-tl==1.24.13
hikka-pyro==2.0.62
hikka-tl==1.24.14
hikka-pyro==2.0.63
aiofile==3.8.1
pythondialog==3.5.3
gitpython==3.1.27