From df30fc58e7a17b35b33dac4683d68fe82248ac17 Mon Sep 17 00:00:00 2001 From: Matthew Feickert Date: Fri, 31 May 2024 02:19:28 -0500 Subject: [PATCH 1/2] build: Use notebook over jupyter * 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..6eba53d88a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -109,7 +109,7 @@ test = [ "pydocstyle", "papermill>=2.5.0", "scrapbook>=0.5.0", - "jupyter", + "notebook>=7.0.0", "graphviz", "pytest-socket>=0.2.0", # c.f. PR #1917 ] From 7f36fdc224b82f55327ed9ac89e9c79e0a7e66a8 Mon Sep 17 00:00:00 2001 From: Matthew Feickert Date: Fri, 31 May 2024 02:29:04 -0500 Subject: [PATCH 2/2] allow for python 3.7 support --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 6eba53d88a..6b53e2b5bc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -109,7 +109,7 @@ test = [ "pydocstyle", "papermill>=2.5.0", "scrapbook>=0.5.0", - "notebook>=7.0.0", + "notebook>=6.5.7", "graphviz", "pytest-socket>=0.2.0", # c.f. PR #1917 ]