From 6b36e5cc23a6fca26b770ef93c7b882b36db4451 Mon Sep 17 00:00:00 2001 From: Kieron Taylor Date: Tue, 15 Aug 2023 14:01:01 +0000 Subject: [PATCH] Prevent sqlalchemy 2, pydantic 2 from installing --- setup.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index a245010..9ad37d1 100644 --- a/setup.py +++ b/setup.py @@ -21,10 +21,11 @@ 'aiosqlite', 'asyncpg', 'fastapi', - 'pydantic', + 'httpx', # missing dep for another dep + 'pydantic<2', 'pysqlite3', 'psycopg2-binary', - 'sqlalchemy>=1.4.29', + 'sqlalchemy>=1.4.29,<2', 'ujson', 'uvicorn', 'uuid'