From 146e453216472b7894b258c8918c2ee56be0057f Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 2 Feb 2025 17:55:20 +0000 Subject: [PATCH 1/4] Update docs dependencies --- docs_src/create_docs | 4 ++-- requirements_doc.txt | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs_src/create_docs b/docs_src/create_docs index bd286329..518c34ff 100755 --- a/docs_src/create_docs +++ b/docs_src/create_docs @@ -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 diff --git a/requirements_doc.txt b/requirements_doc.txt index dafcf286..f6f44cea 100644 --- a/requirements_doc.txt +++ b/requirements_doc.txt @@ -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 From a58e48bd5820b9c5fcfa24af29d84d76c77620e2 Mon Sep 17 00:00:00 2001 From: Robert Parini Date: Sun, 2 Feb 2025 18:03:16 +0000 Subject: [PATCH 2/4] terminalizer 0.10 --- docs_src/create_docs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs_src/create_docs b/docs_src/create_docs index 518c34ff..691dd883 100755 --- a/docs_src/create_docs +++ b/docs_src/create_docs @@ -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.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 +npx terminalizer@0.10.0 render cxroots_progress -o ../docs_src/cxroots_progress.gif +npx terminalizer@0.10.0 render cxroots_logging_progress -o ../docs_src/cxroots_logging_progress.gif # Build documentation sphinx-build -b html . ../docs -T -E -a -W From 405c13e0a9d3ef770eca7ecd8d54e53944030573 Mon Sep 17 00:00:00 2001 From: Robert Parini Date: Sun, 2 Feb 2025 18:18:43 +0000 Subject: [PATCH 3/4] Revert "terminalizer 0.10" This reverts commit a58e48bd5820b9c5fcfa24af29d84d76c77620e2. --- docs_src/create_docs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs_src/create_docs b/docs_src/create_docs index 691dd883..518c34ff 100755 --- a/docs_src/create_docs +++ b/docs_src/create_docs @@ -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.10.0 render cxroots_progress -o ../docs_src/cxroots_progress.gif -npx terminalizer@0.10.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 From 4b52916e49015f73dac3697176ed9dfe38e5b6eb Mon Sep 17 00:00:00 2001 From: Robert Parini Date: Sun, 2 Feb 2025 18:24:09 +0000 Subject: [PATCH 4/4] unset display --- .github/actions/build-docs/action.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/actions/build-docs/action.yml b/.github/actions/build-docs/action.yml index eadd19aa..1c4d49bd 100644 --- a/.github/actions/build-docs/action.yml +++ b/.github/actions/build-docs/action.yml @@ -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