From 4ac6d408f8aa56ae0cde8d432a9c48f23471d8a4 Mon Sep 17 00:00:00 2001 From: Kamil Monicz Date: Thu, 7 Mar 2024 14:59:33 +0100 Subject: [PATCH] Remove redundant async-timeout dependency in modern Python 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 68bfc25c42..1098e115c6 100644 --- a/setup.py +++ b/setup.py @@ -36,7 +36,7 @@ author_email="oss@redis.com", python_requires=">=3.8", install_requires=[ - 'async-timeout>=4.0.3', + 'async-timeout>=4.0.3; python_full_version<"3.11.3"', ], classifiers=[ "Development Status :: 5 - Production/Stable",