Skip to content

Commit

Permalink
install pdoc and update version to generate documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
Ben Mather committed Dec 5, 2023
1 parent 93d92df commit f8dec2c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build_deploy_pdoc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
steps:
- uses: actions/checkout@v2
with:
python-version: "3.10"
python-version: "3.11"

- name: Install dependencies
run: |
Expand All @@ -23,6 +23,7 @@ jobs:
pip install scipy
pip install Cython
pip install pdoc3
pip install pytest
- name: Install latest stripy
run: |
Expand All @@ -31,7 +32,7 @@ jobs:
- name: Build docs with pdoc
shell: bash -l {0}
run: |
VERSION=`python setup.py --version`
VERSION=`python -c "from importlib.metadata import version; print(version('stripy'))"`
echo "VERSION=$(echo $VERSION)" >> $GITHUB_ENV
mkdir -p docs
cd docs
Expand Down

0 comments on commit f8dec2c

Please sign in to comment.