Skip to content

Commit f018e12

Browse files
authored
Merge branch 'main' into add_small_e_prot
2 parents 4185a63 + 6d57230 commit f018e12

5 files changed

Lines changed: 7 additions & 4 deletions

File tree

.github/workflows/gh-pages.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- uses: actions/checkout@v7
13+
with:
14+
fetch-depth: 0
1315

1416
- name: Install pandoc and doxygen
1517
run: |

docs/source/conf.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,8 @@
157157
"text": f"pyro {version}",
158158
"image_light": "logo.gif",
159159
"image_dark": "logo.gif",
160-
}
160+
},
161+
"disable_search": True,
161162
}
162163

163164
# Add any paths that contain custom static files (such as style sheets) here,

pyro/incompressible/simulation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -427,7 +427,7 @@ def dovis(self):
427427
0.5*(u.ip(1) - u.ip(-1))/myg.dx + \
428428
0.5*(v.jp(1) - v.jp(-1))/myg.dy
429429

430-
_, axes = plt.subplots(nrows=2, ncols=2, num=1)
430+
_, axes = plt.subplots(nrows=2, ncols=2, num=1, clear=True)
431431
plt.subplots_adjust(hspace=0.25)
432432

433433
fields = [u, v, vort, divU]

pyro/lm_atm/simulation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -643,7 +643,7 @@ def dovis(self):
643643

644644
vort.v()[:, :] = dv - du
645645

646-
_, axes = plt.subplots(nrows=2, ncols=2, num=1)
646+
_, axes = plt.subplots(nrows=2, ncols=2, num=1, clear=True)
647647
plt.subplots_adjust(hspace=0.25)
648648

649649
fields = [rho, magvel, vort, rhoprime]

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ pytest-cov>=2.6.0
1010

1111
flake8>=3.5.0
1212

13-
sphinx<8.2.0
13+
sphinx
1414
sphinx_book_theme
1515
sphinxcontrib-bibtex
1616
sphinx-math-dollar

0 commit comments

Comments
 (0)