From a92de8fddd9d44812dc272d934d1f092e68eb8b5 Mon Sep 17 00:00:00 2001 From: Ray <44787842+OutboundSpade@users.noreply.github.com> Date: Thu, 7 May 2026 12:04:00 -0400 Subject: [PATCH] Add psycopg[pool] dependency to local and production requirements --- requirements/local.txt | 1 + requirements/production.txt | 1 + 2 files changed, 2 insertions(+) diff --git a/requirements/local.txt b/requirements/local.txt index 3fa4903..220145a 100644 --- a/requirements/local.txt +++ b/requirements/local.txt @@ -3,6 +3,7 @@ Werkzeug==3.0.3 # https://github.com/pallets/werkzeug ipdb==0.13.13 # https://github.com/gotcha/ipdb psycopg[binary]>=3.0.0 # https://github.com/psycopg/psycopg +psycopg[pool]>=3.0.0 # See https://docs.djangoproject.com/en/6.0/ref/databases/#connection-pool watchgod==0.8.2 # https://github.com/samuelcolvin/watchgod # Testing diff --git a/requirements/production.txt b/requirements/production.txt index 7c6cfd5..f1df7ed 100644 --- a/requirements/production.txt +++ b/requirements/production.txt @@ -5,6 +5,7 @@ wheel==0.43.0 # https://idk gunicorn==22.0.0 # https://github.com/benoitc/gunicorn psycopg[binary]>=3.0.0 # https://github.com/psycopg/psycopg +psycopg[pool]>=3.0.0 # See https://docs.djangoproject.com/en/6.0/ref/databases/#connection-pool Collectfast==2.2.0 # https://github.com/antonagestam/collectfast boto3==1.34.145