From a75d8910076990fbf8ff6245170c8f4b8a30a7f3 Mon Sep 17 00:00:00 2001 From: Matthias Date: Fri, 7 Apr 2023 14:45:06 +0200 Subject: [PATCH] Ensure minimum sqlalchemy version is respected --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index edd7b243b..131e8a8a7 100644 --- a/setup.py +++ b/setup.py @@ -59,7 +59,7 @@ setup( install_requires=[ # from requirements.txt 'ccxt>=2.6.26', - 'SQLAlchemy', + 'SQLAlchemy>=2.0.6', 'python-telegram-bot>=13.4', 'arrow>=0.17.0', 'cachetools',