From 13fd071d7bac0138cfb1193366fa893781d011b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Brigitta=20Sip=C5=91cz?= Date: Wed, 26 Jun 2024 13:08:42 -0700 Subject: [PATCH] CI: not yet fail builds with warnings. And minor config updates --- .circleci/config.yml | 4 ++-- conf.py | 4 ++-- tox.ini | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 201b394b..cfd26245 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -4,7 +4,7 @@ jobs: build-docs: docker: - - image: cimg/python:3.11 + - image: cimg/python:3.12 steps: - checkout @@ -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 diff --git a/conf.py b/conf.py index 73ebec71..4ba368c1 100644 --- a/conf.py +++ b/conf.py @@ -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, diff --git a/tox.ini b/tox.ini index 6fb937db..437e0f72 100644 --- a/tox.ini +++ b/tox.ini @@ -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