From 9e65d045f60ee69a84316ec9dde393d45718791c Mon Sep 17 00:00:00 2001 From: Cedric Hombourger Date: Thu, 19 May 2022 21:24:25 +0200 Subject: [PATCH] setup: require pyzmq<23.0.0 zerorpc fails with errors such as 'zerorpc.gevent_zmq' has no attribute 'PUSH' when running against the latest version. Changes to zerorpc are probably required. Closes: #242 Signed-off-by: Cedric Hombourger --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 9420bccc..b7c2f283 100644 --- a/setup.py +++ b/setup.py @@ -52,7 +52,7 @@ "pyserial>=2.6", "python-daemon>=2.0", "pyusb>=1.0", - "pyzmq>=15.0", + "pyzmq>=15.0,<23.0.0", "psutil", "requests", "zerorpc>=0.6.0",