Skip to content

Commit

Permalink
tries fixing docs handling
Browse files Browse the repository at this point in the history
  • Loading branch information
WolfgangFahl committed Mar 29, 2024
1 parent e7d7613 commit 141e48f
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/deploy-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,17 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7]
python-version: [3.9]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install sphinx sphinx-rtd-theme
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
pip install .
- name: Build docs
run: |
scripts/doc
Expand Down

0 comments on commit 141e48f

Please sign in to comment.