Skip to content

Commit

Permalink
Update the doc building action
Browse files Browse the repository at this point in the history
  • Loading branch information
twomagpi committed Aug 5, 2024
1 parent 81c164f commit a70fca0
Showing 1 changed file with 8 additions and 10 deletions.
18 changes: 8 additions & 10 deletions .github/workflows/book.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,23 +30,21 @@ jobs:
uses: ts-graphviz/setup-graphviz@v1

# install python
- name: Set up Python 3.8
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: 3.8
python-version: 3.10

# install dependencies
- name: Install dependencies
# set up pygom
- name: Build and install pygom
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r docs/requirements.txt
pip install .
# set up pygom
- name: Build and install pygom
# install dependencies
- name: Install documentation dependencies
run: |
python setup.py build
python setup.py install
pip install -r docs/requirements.txt
# build the book
# TODO check which flags are needed, -W
Expand Down

0 comments on commit a70fca0

Please sign in to comment.