Skip to content

Commit

Permalink
Limit sphinx version in Gitlab CI, too
Browse files Browse the repository at this point in the history
  • Loading branch information
inducer committed Sep 7, 2023
1 parent 12122f3 commit 6ded6a6
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,10 +92,15 @@ Python 3 Conda Examples:
run_examples
Documentation:
script:
- EXTRA_INSTALL="pybind11 numpy matplotlib"
- curl -L -O https://gitlab.tiker.net/inducer/ci-support/raw/main/build-docs.sh
- ". ./build-docs.sh"
script: |
# Work around regression introduced in
# https://github.com/sphinx-doc/sphinx/pull/11645
# see also https://github.com/sphinx-doc/sphinx/issues/11662
export CI_SUPPORT_SPHINX_VERSION_SPECIFIER="<7.2.5"
EXTRA_INSTALL="pybind11 numpy matplotlib"
curl -L -O https://gitlab.tiker.net/inducer/ci-support/raw/main/build-docs.sh
". ./build-docs.sh"
tags:
- python3

Expand Down

0 comments on commit 6ded6a6

Please sign in to comment.