summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorChayim <chayim@users.noreply.github.com>2021-11-25 16:32:28 +0200
committerGitHub <noreply@github.com>2021-11-25 16:32:28 +0200
commit884f7adc871fbae352dfea099a57a1534a8588c6 (patch)
treefcd9a0c49823f681cc8baff4f0381a5f1bb042b4 /setup.py
parentf4519f3b7f1f7314b5d342be989df1c4365954b9 (diff)
downloadredis-py-884f7adc871fbae352dfea099a57a1534a8588c6.tar.gz
Fixing deprecating distutils (PEP 632) (#1730)
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 6c712bd..9acb501 100644
--- a/setup.py
+++ b/setup.py
@@ -24,7 +24,8 @@ setup(
author_email="oss@redis.com",
python_requires=">=3.6",
install_requires=[
- 'deprecated'
+ 'deprecated==1.2.3',
+ 'packaging==21.3',
],
classifiers=[
"Development Status :: 5 - Production/Stable",