From d4896b5058244afcb6fe83bef7a4027fb4d02a93 Mon Sep 17 00:00:00 2001 From: dvora-h <67596500+dvora-h@users.noreply.github.com> Date: Mon, 15 Jan 2024 16:14:24 +0200 Subject: [PATCH] Update install_requires (#3109) --- setup.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index af46138ea4..143ba69fa4 100644 --- a/setup.py +++ b/setup.py @@ -34,11 +34,10 @@ }, author="Redis Inc.", author_email="oss@redis.com", - python_requires=">=3.7", + python_requires=">=3.8", install_requires=[ - 'importlib-metadata >= 1.0; python_version < "3.8"', 'typing-extensions; python_version<"3.8"', - 'async-timeout>=4.0.2; python_full_version<="3.11.2"', + 'async-timeout>=4.0.3', ], classifiers=[ "Development Status :: 5 - Production/Stable", @@ -49,7 +48,6 @@ "Programming Language :: Python", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3 :: Only", - "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10",