From 4a2f3f5fdc944ee390a5dc0772260837575e4e76 Mon Sep 17 00:00:00 2001 From: Danilo Reyes Date: Sun, 2 Nov 2025 00:47:17 -0600 Subject: [PATCH] chore: update psycopg2 dependency in pyproject.toml - Changed the dependency from `psycopg2-binary` to `psycopg2` in `pyproject.toml` for better compatibility and performance. --- backend/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/pyproject.toml b/backend/pyproject.toml index 065e3fd..57442a1 100644 --- a/backend/pyproject.toml +++ b/backend/pyproject.toml @@ -16,7 +16,7 @@ dependencies = [ "boto3>=1.35.0", "python-multipart>=0.0.12", "httpx>=0.27.0", - "psycopg2-binary>=2.9.0", + "psycopg2>=2.9.0", ] [project.optional-dependencies]