From 1ed5aa2126af00e4096252129d4704b56a3f0997 Mon Sep 17 00:00:00 2001 From: Jack Wotherspoon Date: Tue, 16 Jan 2024 09:23:05 -0500 Subject: [PATCH] fix: add asyncpg as optional dep (#209) --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 3bd9c64..6562af7 100644 --- a/setup.py +++ b/setup.py @@ -76,6 +76,7 @@ install_requires=dependencies, extras_require={ "pg8000": ["pg8000>=1.30.4"], + "asyncpg": ["asyncpg>=0.29.0"], }, python_requires=">=3.8", include_package_data=True,