From 1d240529b56b96e4555d515efde3a598fd878a49 Mon Sep 17 00:00:00 2001 From: MoritzWeber Date: Fri, 6 Sep 2024 10:46:29 +0200 Subject: [PATCH] fix: Temporarly fix fastapi to `<0.112.4` due to pagination incompatility https://github.com/uriyyo/fastapi-pagination/issues/1273 --- backend/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/pyproject.toml b/backend/pyproject.toml index f8564665ad..730a34f81f 100644 --- a/backend/pyproject.toml +++ b/backend/pyproject.toml @@ -26,7 +26,7 @@ dependencies = [ "alembic==1.13.2", "appdirs", "cachetools", - "fastapi>=0.101.0", + "fastapi>=0.101.0,<0.112.4", "kubernetes", "psycopg2-binary>2.9.7", "pydantic>=2.0.0",