From 87a7d63aeb909cc5d763161291889a35d37dc454 Mon Sep 17 00:00:00 2001 From: Barcode Betty <32+cs_betty@noreply.git.farh.net> Date: Mon, 22 Jun 2026 23:09:45 +0000 Subject: [PATCH] fix: add psycopg2-binary to runtime deps (CAR-1422) alembic upgrade head uses SQLAlchemy sync engine with postgresql:// URL, which requires psycopg2. The old image had it via cartsnitch-common; standalone image needs it explicit. Co-Authored-By: Paperclip --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index b8838fa..477e332 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -21,6 +21,7 @@ dependencies = [ "pydantic-settings>=2.0,<3.0", "sqlalchemy[asyncio]>=2.0,<3.0", "asyncpg>=0.29,<1.0", + "psycopg2-binary>=2.9", "resend>=2.0", "python-multipart>=0.0.9", ] -- 2.52.0