From 9c866e5d6b2832d4d8ddc1dcf16b689c9f8ba305 Mon Sep 17 00:00:00 2001 From: Nicolas Kruse Date: Tue, 14 Jul 2026 10:19:31 +0200 Subject: [PATCH 1/2] CI: Jupyter version pinned for building examples --- pyproject.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 6424fa1..bede962 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -50,10 +50,10 @@ doc_build = [ "myst-parser", "pandas", "matplotlib", - "ipykernel", - "jupyter", - "nbconvert", - "notedown" + "ipykernel==6.29", + "jupyter==1.1", + "nbconvert==7.16", + "notedown==1.5" ] [tool.mypy] From 75ac3728a3ec87290e181d3c7654addb3cb93a36 Mon Sep 17 00:00:00 2001 From: Nicolas Kruse Date: Tue, 14 Jul 2026 10:20:03 +0200 Subject: [PATCH 2/2] Example-readme updated with correct example file name --- examples/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/README.md b/examples/README.md index 690d275..87b8001 100644 --- a/examples/README.md +++ b/examples/README.md @@ -11,11 +11,11 @@ The conversion is done like the following automated by the [docs/source/render_examples.py](../docs/source/render_examples.py) script: ``` bash # Converting markdown with code sections to Jupyter Notebook and run it: -notedown examples/soec_methane.md --to notebook --output docs/source/api/soec_methane.ipynb --run +notedown examples/sofc_methane.md --to notebook --output docs/source/api/sofc_methane.ipynb --run # Converting the Jupyter Notebook to Markdown and a folder with image # files placed in docs/source/api/: -jupyter nbconvert --to markdown docs/source/api/soec_methane.ipynb --output soec_methane.md +jupyter nbconvert --to markdown docs/source/api/sofc_methane.ipynb --output sofc_methane.md ``` A new example Markdown file can be created from a Jupyter Notebook running