Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
d339b96
Add Jupyter notebook widget for WebGL viewer
claude Mar 23, 2026
a0ddbc6
Add example for Jupyter notebook WebGL viewer usage
claude Mar 23, 2026
5469bd0
Rename Jupyter example to plot_ prefix so sphinx-gallery renders it
claude Mar 23, 2026
01dc8d0
Use nbsphinx to render Jupyter notebook example in docs
claude Mar 23, 2026
56f6c6f
Add sphinx-gallery execution times file (auto-generated)
claude Mar 23, 2026
0e5e1a8
Pre-execute notebook to embed static WebGL viewer in docs
claude Mar 23, 2026
9d0bdc5
Move notebook to docs/notebooks/ and strip cell outputs
claude Mar 23, 2026
3ed20ea
Execute notebook at docs build time instead of committing outputs
claude Mar 23, 2026
92f9cb6
Move notebook under Example Gallery in docs index
claude Mar 23, 2026
46be3eb
Remove auto-generated sphinx-gallery execution times file
mvdoc Mar 23, 2026
e4c9cbc
Fix bugs and improve Jupyter WebGL widget
mvdoc Mar 23, 2026
f8c8756
Fix notebook to use make_static directory instead of srcdoc
mvdoc Mar 23, 2026
85c0528
Add nbsphinx, ipykernel, and pandoc to docs CI workflow
mvdoc Mar 23, 2026
c6c5868
Make nbsphinx optional in docs build
mvdoc Mar 23, 2026
76904cf
Address Copilot review comments on Jupyter widget PR
mvdoc Mar 24, 2026
1b306e4
Fix review issues and add comprehensive tests for Jupyter widget
mvdoc Apr 4, 2026
a2312ac
Merge remote-tracking branch 'origin/main' into claude/webgl-jupyter-…
mvdoc Apr 4, 2026
50ea87d
Add output_dir to display_static and improve Jupyter notebook docs
mvdoc Apr 5, 2026
320f359
Add headless 3D brain views notebook example
mvdoc Apr 5, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build_docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@ jobs:
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y inkscape --no-install-recommends
sudo apt-get install -y inkscape pandoc --no-install-recommends
pip install --upgrade pip
pip install wheel setuptools numpy cython
# force using latest nibabel
pip install -U nibabel
pip install -q ipython Sphinx sphinx-gallery numpydoc # TODO: move to pyproject.toml
pip install -q ipython Sphinx sphinx-gallery numpydoc nbsphinx ipykernel # TODO: move to pyproject.toml
pip install -e . --no-build-isolation --group dev
python -c 'import cortex; print(cortex.__full_version__)'

Expand Down
Loading
Loading