Fix dj_queue notify errors by switching to psycopg3.
Deploy Beta / unit-tests (push) Successful in 9s
Deploy Beta / docker (push) Successful in 17s
Deploy Beta / deploy-beta (push) Successful in 3m51s

dj_queue expects connection.notifies() (psycopg3); psycopg2 exposed notifies as a list and caused TypeError loops in the worker.
This commit is contained in:
2026-08-09 06:09:26 -05:00
parent 7496af72d0
commit 617bda3e8b
2 changed files with 73 additions and 42 deletions
+2 -2
View File
@@ -6,13 +6,13 @@ readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"django>=6.0,<7",
"dj-queue>=0.13.0",
"dj-queue[postgres]>=0.13.0",
"django-phonenumber-field>=8.1.0",
"django-recaptcha>=4.1.0",
"cryptography>=44.0.0",
"gunicorn>=23.0.0",
"phonenumbers>=9.0.0",
"psycopg2-binary>=2.9.10",
"psycopg[binary]>=3.3.3",
"requests>=2.32.0",
"whitenoise>=6.9.0",
]