fix: add postgres extras to dependencies

This commit is contained in:
Boris Arzentar 2024-11-11 17:38:33 +01:00 committed by Leon Luithlen
parent 88e226d8c7
commit 27057d3a29
2 changed files with 5 additions and 6 deletions

4
poetry.lock generated
View file

@ -7727,11 +7727,11 @@ cli = []
filesystem = ["botocore"]
neo4j = ["neo4j"]
notebook = []
postgres = []
postgres = ["asyncpg", "pgvector", "psycopg2"]
qdrant = ["qdrant-client"]
weaviate = ["weaviate-client"]
[metadata]
lock-version = "2.0"
python-versions = ">=3.9.0,<3.12"
content-hash = "7c305c381d9327bd55e658cc955a6335411d85fc3e11f2f3dcebfdc5e3b70da0"
content-hash = "fb09733ff7a70fb91c5f72ff0c8a8137b857557930a7aa025aad3154de4d8ceb"

View file

@ -67,6 +67,9 @@ anthropic = "^0.26.1"
sentry-sdk = {extras = ["fastapi"], version = "^2.9.0"}
fastapi-users = {version = "*", extras = ["sqlalchemy"]}
alembic = "^1.13.3"
asyncpg = "^0.29.0"
pgvector = "^0.3.5"
psycopg2 = "^2.9.10"
[tool.poetry.extras]
filesystem = ["s3fs", "botocore"]
@ -77,10 +80,6 @@ neo4j = ["neo4j"]
postgres = ["psycopg2", "pgvector", "asyncpg"]
notebook = ["ipykernel", "overrides", "ipywidgets", "jupyterlab", "jupyterlab_widgets", "jupyterlab-server", "jupyterlab-git"]
[tool.poetry.group.postgres.dependencies]
asyncpg = "^0.29.0"
pgvector = "^0.3.5"
psycopg2 = "^2.9.10"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.0"