diff options
author | Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> | 2024-04-29 17:40:50 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-29 17:40:50 (GMT) |
commit | 8d4b756fd31d4d91b55105b1241561e92cc571a3 (patch) | |
tree | b43d277972fe8ae8e0a4d01a6875546d095ca8a4 /.github | |
parent | 43fa76638fc75958b592096b6830c15f0afa1a73 (diff) | |
download | cpython-8d4b756fd31d4d91b55105b1241561e92cc571a3.zip cpython-8d4b756fd31d4d91b55105b1241561e92cc571a3.tar.gz cpython-8d4b756fd31d4d91b55105b1241561e92cc571a3.tar.bz2 |
Docs: Upgrade to Sphinx 7.3 (#118397)
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/reusable-docs.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/reusable-docs.yml b/.github/workflows/reusable-docs.yml index 9e26d78..fd519d6 100644 --- a/.github/workflows/reusable-docs.yml +++ b/.github/workflows/reusable-docs.yml @@ -55,7 +55,7 @@ jobs: run: | set -Eeuo pipefail # Build docs with the '-n' (nit-picky) option; write warnings to file - make -C Doc/ PYTHON=../python SPHINXOPTS="-q -n -W --keep-going -w sphinx-warnings.txt" html + make -C Doc/ PYTHON=../python SPHINXOPTS="--quiet --nitpicky --fail-on-warning --keep-going --warning-file sphinx-warnings.txt" html - name: 'Check warnings' if: github.event_name == 'pull_request' run: | |