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
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ jobs:

build-docs:
docker:
- image: cimg/python:3.11
- image: cimg/python:3.12

steps:
- checkout
Expand All @@ -17,7 +17,7 @@ jobs:
name: Build HTML rendering of notebooks
no_output_timeout: 30m
command: |
python -m tox -e py311-buildhtml
python -m tox -e py312-buildhtml
- store_artifacts:
path: _build/html
Expand Down
4 changes: 2 additions & 2 deletions conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@
html_logo = '_static/irsa_logo.png'
#html_favicon = '_static/favicon.ico'
html_theme_options = {
"github_url": "https://github.com/fornax-navo/fornax-demo-notebooks",
"repository_url": "https://github.com/fornax-navo/fornax-demo-notebooks",
"github_url": "https://github.com/bsipocz/irsa-tutorials",
"repository_url": "https://github.com/bsipocz/irsa-tutorials",
"repository_branch": "main",
"use_repository_button": True,
"use_issues_button": True,
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ commands =
!buildhtml: bash -c 'find tutorials -name "*.md" | grep -vf ignore_testing | xargs jupytext --to notebook '

!buildhtml: pytest --nbval-lax --durations=10 tutorials
buildhtml: sphinx-build -b html . _build/html -D nb_execution_mode=auto -nWT --keep-going
buildhtml: sphinx-build -b html . _build/html -D nb_execution_mode=auto -nT --keep-going

pip_pre =
predeps: true
Expand Down