From 9640ee7b29faba60c06e9b63bf13484b2814c29d Mon Sep 17 00:00:00 2001 From: "bodong.ybd" Date: Mon, 10 Apr 2023 13:49:19 +0800 Subject: [PATCH] Upgrade redis-py to 4.4.4 and above Fix a redis-py asynchronous usage bug, for details please refer to: https://github.com/redis/redis-py/issues/2665 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index b402fa2..8c10c6c 100755 --- a/setup.py +++ b/setup.py @@ -13,5 +13,5 @@ author_email="vincillau@outlook.com", python_requires=">=3.7", packages=["tair", "tair.asyncio"], - install_requires=["redis >= 4.2"], + install_requires=["redis >= 4.4.4"], )