From e042d143fcee5bbf29d71146f766f727f6f8ae8a Mon Sep 17 00:00:00 2001 From: MoritzWeber Date: Thu, 1 Feb 2024 12:17:20 +0100 Subject: [PATCH] fix(backend): Set `psycopg2-binary>2.9.7` to avoid database connection issues --- backend/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/pyproject.toml b/backend/pyproject.toml index 5ebeb526d..9269dc89d 100644 --- a/backend/pyproject.toml +++ b/backend/pyproject.toml @@ -29,7 +29,7 @@ dependencies = [ "fastapi>=0.101.0", "kubernetes", "msal", - "psycopg2-binary", + "psycopg2-binary>2.9.7", "pydantic>=2.0.0", "python-dateutil", "python-jose",