From 57b3c00f067473d9143c202a02601737412090bb Mon Sep 17 00:00:00 2001 From: Carlos Cordoba Date: Sun, 26 Dec 2021 11:25:04 -0500 Subject: [PATCH] Require jupyter-client 7.1.0 to fix issues on Windows In particular, this should fix "ZMQError: Address already in use" when restarting the kernel. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 5797a371..99353b8f 100644 --- a/setup.py +++ b/setup.py @@ -44,7 +44,7 @@ def get_version(module='spyder_kernels'): 'ipython<6; python_version<"3"', 'ipython>=7.6.0,<8; python_version>="3"', 'jupyter-client>=5.3.4,<6; python_version<"3"', - 'jupyter-client>=7.0.0; python_version>="3"', + 'jupyter-client>=7.1.0; python_version>="3"', 'pyzmq>=17', 'wurlitzer>=1.0.3;platform_system!="Windows"', ]