Skip to content

Commit

Permalink
Fix Documentation Build
Browse files Browse the repository at this point in the history
This patch temporarily restricts the Sphinx version since the latest one
causes trouble with `sphinx_rtd_theme`. This should be reverted once
that bug is fixed in the theme.

See: readthedocs/sphinx_rtd_theme#1343
  • Loading branch information
lkiesow committed Sep 25, 2022
1 parent 1f8dc3d commit 5fc91a2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/docs.yml
Expand Up @@ -18,7 +18,9 @@ jobs:
with:
python-version: '3.8'
- name: Install
run: pip install sphinx sphinx-rtd-theme
# temporary fix since sphinx-rtd-theme fails with the latest sphinx
# https://github.com/readthedocs/sphinx_rtd_theme/issues/1343
run: pip install sphinx!=5.2.0.post0 sphinx-rtd-theme
- name: Build
run: |
make -C docs clean html
Expand Down

0 comments on commit 5fc91a2

Please sign in to comment.