Skip to content

Commit 547aca2

Browse files
authored
Merge pull request #5069 from firedrakeproject/connorjward/merge-release
2 parents c37bf3d + 5d8f5a3 commit 547aca2

4 files changed

Lines changed: 13 additions & 12 deletions

File tree

.github/workflows/core.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -673,15 +673,7 @@ jobs:
673673
firedrake-clean
674674
pip list
675675
676-
- name: Check bibtex
677-
run: make -C firedrake-repo/docs validate-bibtex
678-
679-
- name: Check documentation links
680-
if: success() || steps.install.conclusion == 'success'
681-
run: make -C firedrake-repo/docs linkcheck
682-
683676
- name: Build documentation
684-
if: success() || steps.install.conclusion == 'success'
685677
id: build_docs
686678
working-directory: firedrake-repo/docs
687679
run: |
@@ -691,6 +683,14 @@ jobs:
691683
# : Copy manual to HTML tree
692684
cp build/latex/Firedrake.pdf build/html/_static/manual.pdf
693685
686+
- name: Check bibtex
687+
if: success() || steps.install.conclusion == 'success'
688+
run: make -C firedrake-repo/docs validate-bibtex
689+
690+
- name: Check documentation links
691+
if: success() || steps.install.conclusion == 'success'
692+
run: make -C firedrake-repo/docs linkcheck
693+
694694
- name: Upload documentation
695695
uses: actions/upload-pages-artifact@v3
696696
id: upload_docs

docs/source/conf.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,6 +184,7 @@
184184
r'https://fluids.leeds.ac.uk/',
185185
r'https://www.ox.ac.uk',
186186
r'https://buy.crosscountrytrains.co.uk',
187+
r'https://join.slack.com/t/firedrakeproject/*',
187188
]
188189
linkcheck_timeout = 30
189190

@@ -437,7 +438,7 @@
437438
'pyadjoint': ('https://pyadjoint.org/', None),
438439
'numpy': ('https://numpy.org/doc/stable/', None),
439440
'loopy': ('https://documen.tician.de/loopy/', None),
440-
'torch': ('https://pytorch.org/docs/stable/', None),
441+
'torch': ('https://pytorch.org/docs/main/', None),
441442
'jax': ('https://jax.readthedocs.io/en/latest/', None)
442443
}
443444

docs/source/visualisation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Creating output files
1717

1818
Output for visualisation purposes is managed with a
1919
:class:`~.vtk_output.VTKFile` object. To create one, first import the
20-
class from `firedrake.output, then we just need to pass the name of the
20+
class from `firedrake.output`, then we just need to pass the name of the
2121
output file on disk. The file Firedrake creates is in PVD and
2222
therefore the requested file name must end in ``.pvd``.
2323

tests/firedrake/demos/test_demos_run.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
SERIAL_DEMOS = [
2121
Demo(("adaptive_multigrid", "adaptive_multigrid"), ["matplotlib", "netgen", "vtk"]),
2222
Demo(("benney_luke", "benney_luke"), ["vtk"]),
23-
Demo(("boussinesq", "boussinesq"), []),
23+
Demo(("boussinesq", "boussinesq"), ["netgen", "vtk"]),
2424
Demo(("burgers", "burgers"), ["vtk"]),
2525
Demo(("camassa-holm", "camassaholm"), ["vtk"]),
2626
Demo(("deflation", "deflation"), ["matplotlib"]),
@@ -38,7 +38,7 @@
3838
Demo(("matrix_free", "poisson"), []),
3939
Demo(("matrix_free", "rayleigh-benard"), ["hypre", "mumps", "vtk"]),
4040
Demo(("matrix_free", "stokes"), ["hypre", "mumps", "vtk"]),
41-
Demo(("multicomponent", "multicomponent"), ["vtk, netgen"]),
41+
Demo(("multicomponent", "multicomponent"), ["netgen", "vtk"]),
4242
Demo(("multigrid", "geometric_multigrid"), ["vtk"]),
4343
Demo(("netgen", "netgen_mesh"), ["mumps", "netgen", "slepc", "vtk"]),
4444
Demo(("nonlinear_QG_winddrivengyre", "qg_winddrivengyre"), ["vtk"]),

0 commit comments

Comments
 (0)