Skip to content

Sphinx 8.1+: remove redundant --keep-going #1544

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 30, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ SPHINXBUILD = $(VENVDIR)/bin/sphinx-build
# there are duplicate labels. These cause warnings, which prevent the
# build from finishing. Turn off --fail-on-warning so we can see the
# finished results.
#SPHINXOPTS = --fail-on-warning --keep-going
SPHINXOPTS = --keep-going
#SPHINXOPTS = --fail-on-warning
SPHINXOPTS =
BUILDDIR = _build
BUILDER = html
JOBS = auto
Expand Down
2 changes: 1 addition & 1 deletion make.bat
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ if "%PYTHON%" == "" (
)

set BUILDDIR=_build
set SPHINXOPTS=--fail-on-warning --keep-going
set SPHINXOPTS=--fail-on-warning
set _ALL_SPHINX_OPTS=%SPHINXOPTS%

if "%1" == "check" goto check
Expand Down
2 changes: 1 addition & 1 deletion make.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Set-StrictMode -Version 3.0
$ErrorActionPreference = "Stop"

$BUILDDIR = "_build"
$SPHINXOPTS = "--fail-on-warning --keep-going"
$SPHINXOPTS = "--fail-on-warning"
$_ALL_SPHINX_OPTS = $SPHINXOPTS

$_PYTHON = $Env:PYTHON ?? "py -3"
Expand Down
Loading