From e0c5ea386f00c69cb5a48ceb13793a99b3613e8e Mon Sep 17 00:00:00 2001 From: HgO Date: Sat, 9 Jul 2022 15:30:10 +0200 Subject: [PATCH] add typing-extensions as new dependency --- setup.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index c39d945..7a6e447 100644 --- a/setup.py +++ b/setup.py @@ -25,14 +25,15 @@ setup( description="A matrix bot to do amazing things!", packages=find_packages(exclude=["tests", "tests.*"]), install_requires=[ - "matrix-nio>=0.19.0", - "Markdown>=3.3.7", - "PyYAML>=6.0", + "aiohttp>=3.8.1", "aiohttp-prometheus-exporter>=0.2.4", "aiotools>=1.5.9", - "aiohttp>=3.8.1", "diskcache>=5.4.0", + "matrix-nio>=0.19.0", + "Markdown>=3.3.7", "pytimeparse>=1.1.8", + "PyYAML>=6.0", + "typing-extensions>=4.3.0", ], extras_require={ "e2e": ["matrix-nio[e2e]>=0.19.0"],