Skip to content

Commit

Permalink
Merge pull request #223 from mabarnes/docs-ci-debug
Browse files Browse the repository at this point in the history
Temporarily pin matplotlib==3.8.3 for documentation CI job
  • Loading branch information
johnomotani authored Jun 10, 2024
2 parents 6c09bb0 + 41d6e05 commit 6bf4ea1
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,10 @@ jobs:
- uses: julia-actions/cache@v1
- name: Install dependencies
run: |
pip3 install --user matplotlib
# Version 3.9.0 of matplotlib causes an error with PyPlot.jl, so pin
# matplotlib version to 3.8.3 until this is fixed. See
# https://github.com/JuliaPy/PyPlot.jl/issues/582).
pip3 install --user "matplotlib==3.8.3"
- name: Build and deploy
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Authenticate with GitHub Actions token
Expand All @@ -33,6 +36,9 @@ jobs:
version: '1.10'
- name: Install dependencies
run: |
pip3 install --user matplotlib
# Version 3.9.0 of matplotlib causes an error with PyPlot.jl, so pin
# matplotlib version to 3.8.3 until this is fixed. See
# https://github.com/JuliaPy/PyPlot.jl/issues/582).
pip3 install --user "matplotlib==3.8.3"
- name: Build and deploy
run: julia --project=docs/ docs/make-pdf.jl
6 changes: 6 additions & 0 deletions docs/src/zz_boundary_conditions.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
`boundary_conditions`
=====================

```@autodocs
Modules = [moment_kinetics.boundary_conditions]
```
6 changes: 6 additions & 0 deletions docs/src/zz_gyroaverages.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
`gyroaverages`
==============

```@autodocs
Modules = [moment_kinetics.gyroaverages]
```
6 changes: 6 additions & 0 deletions docs/src/zz_lagrange_polynomials.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
`lagrange_polynomials`
======================

```@autodocs
Modules = [moment_kinetics.lagrange_polynomials]
```

0 comments on commit 6bf4ea1

Please sign in to comment.