Skip to content

Commit

Permalink
CI: install bokeh for GitHub Pages workflows only (#62)
Browse files Browse the repository at this point in the history
  • Loading branch information
LaurentRDC committed Sep 13, 2023
1 parent 0d13d18 commit 7e98e10
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
name: Cache Python build artifacts
with:
path: ~/.cache/pip
key: ${{ runner.os }}-${{ hashFiles('.github/workflows/requirements.txt') }}
key: ${{ runner.os }}-${{ hashFiles('.github/workflows/gh_pages_requirements.txt') }}

- name: Install pandoc-plot and other dependencies
run: |
Expand All @@ -63,7 +63,7 @@ jobs:
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
pip install -r .github/workflows/requirements.txt
pip install -r .github/workflows/gh_pages_requirements.txt
- name: Build documentation
run: source tools/mkmanual.sh
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/gh_pages_requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
bokeh >= 3, <4
matplotlib >= 3, <4
selenium >= 4, <5
pandas >= 1, <2
pandocfilters >= 1.5, <2

0 comments on commit 7e98e10

Please sign in to comment.