Skip to content

Commit cacb374

Browse files
authored
Merge pull request #2 from bsipocz/CI_no_fail_with_warnings
CI: not yet fail builds with warnings. And minor config updates
2 parents 6ed7d1c + 13fd071 commit cacb374

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ jobs:
44

55
build-docs:
66
docker:
7-
- image: cimg/python:3.11
7+
- image: cimg/python:3.12
88

99
steps:
1010
- checkout
@@ -17,7 +17,7 @@ jobs:
1717
name: Build HTML rendering of notebooks
1818
no_output_timeout: 30m
1919
command: |
20-
python -m tox -e py311-buildhtml
20+
python -m tox -e py312-buildhtml
2121
2222
- store_artifacts:
2323
path: _build/html

conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@
5353
html_logo = '_static/irsa_logo.png'
5454
#html_favicon = '_static/favicon.ico'
5555
html_theme_options = {
56-
"github_url": "https://github.com/fornax-navo/fornax-demo-notebooks",
57-
"repository_url": "https://github.com/fornax-navo/fornax-demo-notebooks",
56+
"github_url": "https://github.com/bsipocz/irsa-tutorials",
57+
"repository_url": "https://github.com/bsipocz/irsa-tutorials",
5858
"repository_branch": "main",
5959
"use_repository_button": True,
6060
"use_issues_button": True,

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ commands =
3636
!buildhtml: bash -c 'find tutorials -name "*.md" | grep -vf ignore_testing | xargs jupytext --to notebook '
3737

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

4141
pip_pre =
4242
predeps: true

0 commit comments

Comments
 (0)