Skip to content

Commit a58f423

Browse files
authored
Add packaging to setup_requires, and use >= to play nice to setup.py (fixes #1625) (#1780)
1 parent 291baa9 commit a58f423

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

setup.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,12 @@
2626
author="Redis Inc.",
2727
author_email="[email protected]",
2828
python_requires=">=3.6",
29+
setup_requires=[
30+
"packaging>=21.3",
31+
],
2932
install_requires=[
30-
"deprecated==1.2.3",
31-
"packaging==21.3",
33+
"deprecated>=1.2.3",
34+
"packaging>=21.3",
3235
],
3336
classifiers=[
3437
"Development Status :: 5 - Production/Stable",

0 commit comments

Comments
 (0)