Skip to content

Commit 7e9ce2e

Browse files
authored
Fix celery compatibility with psycopg version (#892)
1 parent 81ec0f0 commit 7e9ce2e

File tree

3 files changed

+56
-55
lines changed

3 files changed

+56
-55
lines changed

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@ dependencies = [
3737
"loguru>=0.7.3",
3838
"msgspec>=0.19.0",
3939
"psutil>=7.1.2",
40-
"psycopg[binary]>=3.2.12",
40+
# https://github.com/fastapi-practices/fastapi_best_architecture/issues/887
41+
"psycopg[binary]==3.2.10",
4142
"pwdlib>=0.2.1",
4243
"pydantic>=2.12.3",
4344
"pydantic-settings>=2.11.0",

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,9 +179,9 @@ prompt-toolkit==3.0.52
179179
# via click-repl
180180
psutil==7.1.2
181181
# via fastapi-best-architecture
182-
psycopg==3.2.12
182+
psycopg==3.2.10
183183
# via fastapi-best-architecture
184-
psycopg-binary==3.2.12 ; implementation_name != 'pypy'
184+
psycopg-binary==3.2.10 ; implementation_name != 'pypy'
185185
# via psycopg
186186
pwdlib==0.3.0
187187
# via fastapi-best-architecture

0 commit comments

Comments
 (0)