From f7e5fe83035b03f9b4e976a0ae85204a074f86b9 Mon Sep 17 00:00:00 2001 From: Matt McCormick Date: Thu, 18 Apr 2024 11:45:05 -0400 Subject: [PATCH] BUG: Add notebook>=7 as a dep for [notebook] installation option The `notebook` dependency no longer is brought in automatically. And specify that we need notebook>=7 with our recent updates to imjoy-jupyterlab-extension. --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 51cab18..19a3aee 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -82,7 +82,8 @@ cli = [ notebook = [ "imjoy-jupyterlab-extension", - "imjoy-elfinder[jupyter]" + "imjoy-elfinder[jupyter]", + "notebook >= 7" ] test = [ "pytest >=2.7.3",