From a2c1d740dc9c412e8be01c6c974a38d4811120d9 Mon Sep 17 00:00:00 2001 From: Kamil Monicz Date: Sun, 10 Mar 2024 10:41:06 +0100 Subject: [PATCH] Remove redundant async-timeout dependency in modern Python (#3177) https://github.com/redis/redis-py/issues/3174 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 8570babbdb..4175faf93a 100644 --- a/setup.py +++ b/setup.py @@ -38,7 +38,7 @@ install_requires=[ 'importlib-metadata >= 1.0; python_version < "3.8"', 'typing-extensions; python_version<"3.8"', - 'async-timeout>=4.0.3', + 'async-timeout>=4.0.3; python_full_version<"3.11.3"', ], classifiers=[ "Development Status :: 5 - Production/Stable",