diff options
author | Chayim <chayim@users.noreply.github.com> | 2021-11-25 16:32:28 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-25 16:32:28 +0200 |
commit | 884f7adc871fbae352dfea099a57a1534a8588c6 (patch) | |
tree | fcd9a0c49823f681cc8baff4f0381a5f1bb042b4 /setup.py | |
parent | f4519f3b7f1f7314b5d342be989df1c4365954b9 (diff) | |
download | redis-py-884f7adc871fbae352dfea099a57a1534a8588c6.tar.gz |
Fixing deprecating distutils (PEP 632) (#1730)
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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", |