From 2aba46db7a52cb71766930f66c20ca484597a277 Mon Sep 17 00:00:00 2001 From: Marcel Jackwerth Date: Wed, 19 Jul 2023 09:03:44 +0200 Subject: [PATCH] Remove greenlet dependency The `greenlet>=2.0.1` requirement is forced on all projects importing this package, but it's actually not imported (except from tests for which it already is listed in `testsrequire.py`). --- setup.py | 1 - 1 file changed, 1 deletion(-) diff --git a/setup.py b/setup.py index 10352d6c..754b9035 100644 --- a/setup.py +++ b/setup.py @@ -95,7 +95,6 @@ def read_version(): python_requires='>=3.7, <4', install_requires=[ 'sqlalchemy>=1.4.24,<1.5', - 'greenlet>=2.0.1', 'requests', 'clickhouse-driver>=0.1.2', 'asynch>=0.2.2',