From 9bcfc8e8af68734a2c4c6b66d01f421a0394fe71 Mon Sep 17 00:00:00 2001 From: guangning Date: Sun, 23 Feb 2020 18:27:26 +0800 Subject: [PATCH] Fixed enum package not found --- pulsar-client-cpp/python/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pulsar-client-cpp/python/setup.py b/pulsar-client-cpp/python/setup.py index 52617a2cde881..f25113b2c50fe 100644 --- a/pulsar-client-cpp/python/setup.py +++ b/pulsar-client-cpp/python/setup.py @@ -92,7 +92,7 @@ def build_extension(self, ext): if PY2: # Python 2 compat dependencies - dependencies += ['enum34'] + dependencies += ['enum34>=1.1.9'] setup( name=NAME,