Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update docs dependencies #435

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
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
2 changes: 2 additions & 0 deletions .github/actions/build-docs/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ description: "Generates html documentation using Sphinx"
runs:
using: "composite"
steps:
- run: unset DISPLAY
shell: bash
- name: Install dependencies
shell: bash
run: pip install . -r requirements_doc.txt
Expand Down
4 changes: 2 additions & 2 deletions docs_src/create_docs
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ python3 docex_tutorial.py
# Render terminal GIFs
# Note this does not seem to work on GitHub Action runners so we have to manually
# commit these gifs whenever we think they should change. faressoft/terminalizer#127
npx terminalizer@0.9.0 render cxroots_progress -o ../docs_src/cxroots_progress.gif
npx terminalizer@0.9.0 render cxroots_logging_progress -o ../docs_src/cxroots_logging_progress.gif
npx terminalizer@0.12.0 render cxroots_progress -o ../docs_src/cxroots_progress.gif
npx terminalizer@0.12.0 render cxroots_logging_progress -o ../docs_src/cxroots_logging_progress.gif

# Build documentation
sphinx-build -b html . ../docs -T -E -a -W
Expand Down
8 changes: 4 additions & 4 deletions requirements_doc.txt
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
nbsphinx==0.9.5
nbsphinx==0.9.6
sphinx==8.1.3
sphinxcontrib-programoutput==0.18
sphinxcontrib-bibtex==2.6.3
sphinx_rtd_theme==3.0.2
sphinx-github-changelog==1.4.0
ipython==8.30.0
nbconvert==7.16.4
ipython==8.32.0
nbconvert==7.16.6
ipython_genutils==0.2.0 # not direct dependency but seems to be a missing requirement from nbconvert
mistune==3.0.2 # not directly required, avoid vulnerability in older version
mistune==3.1.1 # not directly required, avoid vulnerability in older version

-r requirements.txt
Loading