From ebdcfc13649e70dc9313fbef388cd15c9118ca6e Mon Sep 17 00:00:00 2001 From: Richard Evans Date: Mon, 10 Nov 2025 10:57:13 -0700 Subject: [PATCH 1/4] Added jupyter-book and jupyter to setup.py --- setup.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup.py b/setup.py index e71785efb..961602a9a 100755 --- a/setup.py +++ b/setup.py @@ -38,6 +38,8 @@ "requests", "pip", "pygam", + "jupyter-book>=0.11.3", + "jupyter" ], classifiers=[ "Development Status :: 2 - Pre-Alpha", From 83a58ad3780c98db9563ba1610edbe5778ba5654 Mon Sep 17 00:00:00 2001 From: Richard Evans Date: Mon, 10 Nov 2025 11:43:27 -0700 Subject: [PATCH 2/4] Adjusted Jupyter Book version in environment.yml and setup.py --- environment.yml | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/environment.yml b/environment.yml index 69d180b38..6062afe39 100644 --- a/environment.yml +++ b/environment.yml @@ -19,7 +19,7 @@ dependencies: - sphinxcontrib-bibtex>=2.0.0 - sphinx-math-dollar - pydata-sphinx-theme -- jupyter-book>=0.11.3 +- jupyter-book<2.0.0 - jupyter - pytest>=6.0 - pytest-cov diff --git a/setup.py b/setup.py index 961602a9a..e5245d3f6 100755 --- a/setup.py +++ b/setup.py @@ -38,7 +38,7 @@ "requests", "pip", "pygam", - "jupyter-book>=0.11.3", + "jupyter-book<2.0.0", "jupyter" ], classifiers=[ From ca07e72636c1eea0367b510bcec7fd277403dc87 Mon Sep 17 00:00:00 2001 From: Richard Evans Date: Mon, 10 Nov 2025 11:52:31 -0700 Subject: [PATCH 3/4] Black formatted setup.py --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index e5245d3f6..978eeb5e6 100755 --- a/setup.py +++ b/setup.py @@ -39,7 +39,7 @@ "pip", "pygam", "jupyter-book<2.0.0", - "jupyter" + "jupyter", ], classifiers=[ "Development Status :: 2 - Pre-Alpha", From e96ad1baccabb898196651cbb8ca3f2b545b8e38 Mon Sep 17 00:00:00 2001 From: Richard Evans Date: Mon, 10 Nov 2025 13:54:18 -0700 Subject: [PATCH 4/4] Removed pinned jupyter-book and jupyter from setup.py --- setup.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/setup.py b/setup.py index 978eeb5e6..e71785efb 100755 --- a/setup.py +++ b/setup.py @@ -38,8 +38,6 @@ "requests", "pip", "pygam", - "jupyter-book<2.0.0", - "jupyter", ], classifiers=[ "Development Status :: 2 - Pre-Alpha",