Skip to content

Commit 55c7176

Browse files
committed
Merge remote-tracking branch 'upstream/main' into joss_paper
2 parents 8b4fb86 + c27d6b0 commit 55c7176

8 files changed

+15
-5
lines changed

.github/workflows/unit_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ jobs:
7777
with:
7878
qt: true
7979
pyvista: false
80-
- uses: mamba-org/setup-micromamba@v1
80+
- uses: mamba-org/setup-micromamba@v2
8181
with:
8282
environment-file: environment.yml
8383
create-args: >- # beware the >- instead of |, we don't split on newlines but on spaces

.pre-commit-config.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
repos:
22
# ruff PyBispectra
33
- repo: https://github.com/astral-sh/ruff-pre-commit
4-
rev: v0.4.7
4+
rev: v0.7.3
55
hooks:
66
- id: ruff
77
name: ruff lint pybispectra
@@ -10,7 +10,7 @@ repos:
1010

1111
# ruff examples
1212
- repo: https://github.com/astral-sh/ruff-pre-commit
13-
rev: v0.4.7
13+
rev: v0.7.3
1414
hooks:
1515
- id: ruff
1616
name: ruff lint examples
@@ -36,7 +36,7 @@ repos:
3636

3737
# rstcheck
3838
- repo: https://github.com/rstcheck/rstcheck.git
39-
rev: v6.2.0
39+
rev: v6.2.4
4040
hooks:
4141
- id: rstcheck
4242
additional_dependencies:

examples/plot_compute_general.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
# Author(s):
1010
# Thomas S. Binns | github.com/tsbinns
1111

12+
# sphinx_gallery_multi_image = "single"
13+
1214
# %%
1315

1416
import numpy as np

examples/plot_compute_tde.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010
# Author(s):
1111
# Thomas S. Binns | github.com/tsbinns
1212

13+
# sphinx_gallery_multi_image = "single"
14+
1315
# %%
1416

1517
import numpy as np

examples/plot_compute_tde_fbands.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010
# Author(s):
1111
# Thomas S. Binns | github.com/tsbinns
1212

13+
# sphinx_gallery_multi_image = "single"
14+
1315
# %%
1416

1517
import numpy as np

examples/plot_compute_waveshape.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
# Author(s):
1010
# Thomas S. Binns | github.com/tsbinns
1111

12+
# sphinx_gallery_multi_image = "single"
13+
1214
# %%
1315

1416
import numpy as np

examples/plot_compute_waveshape_noisy_data.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010
# Author(s):
1111
# Thomas S. Binns | github.com/tsbinns
1212

13+
# sphinx_gallery_multi_image = "single"
14+
1315
# %%
1416

1517
import numpy as np

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ doc = [
2727
"pydata-sphinx-theme",
2828
"sphinx",
2929
"sphinx-copybutton",
30-
"sphinx-gallery",
30+
"sphinx-gallery>=0.18",
3131
"sphinxcontrib-bibtex",
3232
]
3333
lint = [

0 commit comments

Comments
 (0)