Skip to content

Commit 26b09c8

Browse files
committed
fix: add missing extras dependencies
1 parent c418363 commit 26b09c8

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

pyproject.toml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ classifiers = [
2727
"Documentation" = "https://pgmq-sqlalchemy.readthedocs.io/en/latest/"
2828

2929
[tool.poetry.extras]
30-
asyncpg = ["asyncpg"]
30+
asyncpg = ["asyncpg", "greenlet"]
3131
pg8000 = ["pg8000"]
3232
psycopg = ["psycopg"]
3333
psycopg2-binary = ["psycopg2-binary"]
@@ -37,6 +37,13 @@ psycopg2cffi = ["psycopg2cffi"]
3737
[tool.poetry.dependencies]
3838
python = "^3.9"
3939
SQLAlchemy = "^2.0.31"
40+
# optional dependencies
41+
asyncpg = {version = "^0.29.0", optional = true}
42+
greenlet = {version = "^3.0.3", optional = true}
43+
pg8000 = {version = "^1.31.2", optional = true}
44+
psycopg = {version = "^3.2.1", optional = true}
45+
psycopg2-binary = {version = "^2.9.9", optional = true}
46+
psycopg2cffi = {version = "^2.9.0", optional = true}
4047

4148
[tool.poetry.group.dev.dependencies]
4249
# postgresql drivers

0 commit comments

Comments
 (0)