From a58f4235e554cb50b312caf1a9076114c77d0529 Mon Sep 17 00:00:00 2001 From: Sebastian Pipping Date: Thu, 9 Dec 2021 08:45:14 +0100 Subject: Add packaging to setup_requires, and use >= to play nice to setup.py (fixes #1625) (#1780) --- setup.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 58d753f..b9c2e3e 100644 --- a/setup.py +++ b/setup.py @@ -26,9 +26,12 @@ setup( author="Redis Inc.", author_email="oss@redis.com", python_requires=">=3.6", + setup_requires=[ + "packaging>=21.3", + ], install_requires=[ - "deprecated==1.2.3", - "packaging==21.3", + "deprecated>=1.2.3", + "packaging>=21.3", ], classifiers=[ "Development Status :: 5 - Production/Stable", -- cgit v1.2.1