Skip to content

Commit 865fcf1

Browse files
committed
async-timeout
1 parent a0db874 commit 865fcf1

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

pyproject.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ yaspin = ">=1.0.0"
1414
requests = "*"
1515

1616
redis = { version = ">=3.3.0", optional = true }
17+
async-timeout = { version = ">=4.0.3", optional = true, python = "<3.11" }
1718
pika = { version = "*", optional = true }
1819
# python 3.11 and lower use kafka-python, 3.12 and higher use confluent-kafka
1920
kafka-python = { version = "*", optional = true, python="<3.12" }
@@ -88,14 +89,14 @@ kafka = ["kafka-python", "confluent-kafka"]
8889
postgresql = ["sqlalchemy", "psycopg2", "SQLAlchemy-Utils"]
8990
mssql = ['sqlalchemy', "SQLAlchemy-Utils"]
9091
rabbit = ["pika"]
91-
redis = ["redis"]
92+
redis = ["redis", "async-timeout"]
9293
vault = ["hvac"]
9394
webserver = ["starlette", "uvicorn", "websockets"]
9495
websocket = ["simple_websocket_server", "websocket_client"]
9596
gcs = [] # empty for now, but we want to maintain forwards compatiblity in case we even want to add extras here
9697
aerospike = ["aerospike"]
9798

98-
dev = ["redis", "pika", "kafka-python", "azure-storage-blob", "cffi", "sqlalchemy", "psycopg2",
99+
dev = ["redis", "async-timeout", "pika", "kafka-python", "azure-storage-blob", "cffi", "sqlalchemy", "psycopg2",
99100
"simple_websocket_server", "websocket_client", "starlette", "python-igraph", "uvicorn", "websockets", "hvac",
100101
'pyodbc', 'SQLAlchemy-Utils', "aerospike"]
101102

0 commit comments

Comments
 (0)