From 9f5c979f355c2efb363e7df47181e7be92ea438f Mon Sep 17 00:00:00 2001 From: Matthew Feickert Date: Fri, 31 May 2024 02:44:51 -0500 Subject: [PATCH] build: Use notebook over jupyter (#2507) * jupyter is a metapackage that is never updated, so defining the notebook dependency provides better control on the actual tools required. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 070eb2d708..6b53e2b5bc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -109,7 +109,7 @@ test = [ "pydocstyle", "papermill>=2.5.0", "scrapbook>=0.5.0", - "jupyter", + "notebook>=6.5.7", "graphviz", "pytest-socket>=0.2.0", # c.f. PR #1917 ]