From bda9d296822e56ba8fe76b0072e656005da04905 Mon Sep 17 00:00:00 2001 From: Ilias Katsakioris Date: Wed, 20 Oct 2021 12:45:23 +0300 Subject: [PATCH] backend: Update jputils requirements version ranges Restrict 'jupyter-client' version to be earlier than 7 to workaround upstream discrepancies. Refs jupyter/jupyter_client#637 Signed-off-by: Ilias Katsakioris Reviewed-by: Stefano Fioravanzo --- backend/setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/backend/setup.py b/backend/setup.py index 99ae0dfb..8bc9b6d4 100644 --- a/backend/setup.py +++ b/backend/setup.py @@ -36,15 +36,15 @@ 'kfp', 'autopep8 >=1.4, <1.5', 'astor >= 0.8.1', - 'nbformat >=4.4, <5.0', 'networkx >=2.3, <3.0', 'jinja2 >=2.10, <3.0', 'pyflakes >=2.1.1', 'dill >=0.3, <0.4', 'IPython >= 7.6.0', - 'jupyter-client >= 5.3.4', + 'jupyter-client >=5.3.4, <7.0.0', 'jupyter-core >= 4.6.0', - 'nbconvert >= 5.6.1, < 6.0.0', + 'nbconvert >=5.6.1, <6.0.0', + 'nbformat >=4.4, <5.0.0', 'ipykernel >= 5.1.4', 'notebook >= 6.0.0', 'packaging > 20',