1
0
Fork 0
mirror of https://github.com/mealie-recipes/mealie.git synced 2025-08-06 14:05:21 +02:00

use psycopg2 instead of psycopg2-binary on prod (#483)

This commit is contained in:
wengtad 2021-06-12 07:30:06 +08:00 committed by GitHub
parent d036cbc962
commit 702379c0c8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 90 additions and 38 deletions

View file

@ -27,13 +27,14 @@ scrape-schema-recipe = "^0.1.3"
python-multipart = "^0.0.5"
fastapi-camelcase = "^1.0.2"
bcrypt = "^3.2.0"
python-jose = "^3.2.0"
python-jose = "^3.3.0"
passlib = "^1.7.4"
lxml = "4.6.2"
Pillow = "^8.2.0"
pathvalidate = "^2.4.1"
apprise = "^0.9.2"
recipe-scrapers = "^13.2.7"
psycopg2 = { version = "^2.8.6", optional = true }
[tool.poetry.dev-dependencies]
@ -63,4 +64,7 @@ testpaths = [
]
[tool.coverage.report]
skip_empty = true
skip_empty = true
[tool.poetry.extras]
pgsql = ["psycopg2"]