Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
6 changes: 1 addition & 5 deletions .github/actions/build-docs/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,4 @@ runs:
shell: bash
run: |
cd docs
if [ "${{ inputs.treat-warnings-as-errors }}" = "true" ]; then
sphinx-build -b html -W --keep-going source build/html
else
sphinx-build -b html source build/html
fi
make html
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
exclude_patterns = ["_build", "Thumbs.db", ".DS_Store", "**/.ipynb_checkpoints"]

# nbsphinx configuration
nbsphinx_execute = "never" # Don't execute notebooks during build
nbsphinx_execute = "always" # Execute notebooks during build


# -- Options for HTML output -------------------------------------------------
Expand Down
3 changes: 2 additions & 1 deletion docs/source/tutorials.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,6 @@ Here are a few tutorials to help you get started.

.. toctree::
:maxdepth: 1
:glob:

tutorials/example_tutorial.ipynb
tutorials/*