From f42e8d2a001ced77f3e259195958000a0f9ccb6e Mon Sep 17 00:00:00 2001 From: Min RK Date: Thu, 28 Mar 2024 22:00:24 +0100 Subject: [PATCH] remove upper bound on pyzmq temporary pin applied to both jupyter-client 8 and pyzmq 25 _appears_ resolved with jupyter-client 7.49 (or jupyter-core 5.3.2?) pinning pyzmq<25 prevents installation on Python 3.12, which requires pyzmq >=25.1 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 1c559b0bce..a8596e8eed 100755 --- a/setup.py +++ b/setup.py @@ -109,7 +109,7 @@ 'tornado>=6.1', # pyzmq>=17 is not technically necessary, # but hopefully avoids incompatibilities with Tornado 5. April 2018 - 'pyzmq>=17,<25', + 'pyzmq>=17', 'argon2-cffi', 'traitlets>=4.2.1', 'jupyter_core>=4.6.1',