From 15f952fb669b180e4d1fff4d14d69d6c363c9621 Mon Sep 17 00:00:00 2001 From: Christopher Dignam Date: Tue, 26 Oct 2021 10:29:14 -0400 Subject: [PATCH] fix msgpack-python installation msgpack-python 0.5.0 or later is incompatible with this library. Specifying an accepted version range fixes the installation of this tool. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 8474f9d..b6135d3 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ maintainer_email='misterionkell@gmail.com', keywords=['Redis', 'Memory Profiler'], license='MIT', - install_requires=['redis', 'tabulate', 'tqdm', 'msgpack-python'], + install_requires=['redis', 'tabulate', 'tqdm', 'msgpack-python>=0.4.7,<0.5.0'], include_package_data=True, packages=['rma', 'rma.helpers', 'rma.reporters', 'rma.rule', 'rma.cli'], python_requires='>3.5',