From 32f3d5602f00ff93a24b5251d576a9ef197f429f Mon Sep 17 00:00:00 2001 From: "Jason T. Brown" Date: Mon, 9 Mar 2020 11:58:14 -0400 Subject: [PATCH] Pin jupyter_client dependency version Fix https://github.com/mpastell/Pweave/issues/151 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 3ca46de..1b6025a 100644 --- a/setup.py +++ b/setup.py @@ -40,7 +40,7 @@ def read(fname): 'ipython >= 6.0', 'nbformat', 'nbconvert', - 'jupyter_client', + 'jupyter_client < 6.0', 'ipykernel'], extras_require = {'test': ['scipy', 'matplotlib', 'coverage', 'ipython', 'nose', 'notebook'],