From 62bd11dd71e30e1688e15bf7402fb39953c195a1 Mon Sep 17 00:00:00 2001 From: Andreas Motl Date: Mon, 27 Jun 2022 22:10:56 +0200 Subject: [PATCH] Explicitly select `sqlalchemy[asyncio]` for installation --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index c8b699b..8e63875 100644 --- a/setup.py +++ b/setup.py @@ -7,5 +7,5 @@ name='test-buildout-python310', version='0.0.0', url='https://github.com/crate-workbench/test-buildout-python310', - install_requires='sqlalchemy>=1.0,<1.5', + install_requires='sqlalchemy[asyncio]>=1.0,<1.5', )