From d943861337afaf0341d3ed514788400c4fb2de2e Mon Sep 17 00:00:00 2001 From: Feda Curic Date: Mon, 13 Nov 2023 11:30:24 +0100 Subject: [PATCH] Unpin pydantic and fastapi --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index b44a78a..2bc780b 100644 --- a/setup.py +++ b/setup.py @@ -56,12 +56,12 @@ }, install_requires=[ "alembic", - "fastapi < 0.100.0", + "fastapi", "httpx", "numpy", "pandas", "pyarrow", - "pydantic < 2", + "pydantic", "python-multipart", "requests", "sqlalchemy>=1.4",