From 05c4d4529faaff0ca593d995816a16c14cf83c7a Mon Sep 17 00:00:00 2001 From: Antoni Ivanov Date: Tue, 19 Sep 2023 23:33:54 +0300 Subject: [PATCH] vdk-jupyter: pin traitlets to 5.9 (#2674) Latest release of traitlets (5.10) is breaking jupyter server - https://github.com/jupyter/notebook/issues/7048 which is causing jupyter server to fail to start So we are pinning temporarily to 5.9 to fix that. --- .../vdk-jupyter/vdk-jupyterlab-extension/pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/projects/vdk-plugins/vdk-jupyter/vdk-jupyterlab-extension/pyproject.toml b/projects/vdk-plugins/vdk-jupyter/vdk-jupyterlab-extension/pyproject.toml index 0b45e5f8c2..f14b273a32 100644 --- a/projects/vdk-plugins/vdk-jupyter/vdk-jupyterlab-extension/pyproject.toml +++ b/projects/vdk-plugins/vdk-jupyter/vdk-jupyterlab-extension/pyproject.toml @@ -25,6 +25,7 @@ classifiers = [ dependencies = [ "jupyter_server>=1.6,<3", "jupyterlab==3.6.3", + "traitlets==5.9.0", "vdk-control-cli", "vdk-core" ]