From: Randy Dunlap <rdunlap@infradead.org>
To: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>,
Jonathan Corbet <corbet@lwn.net>,
Linux Doc Mailing List <linux-doc@vger.kernel.org>
Cc: "Björn Roy Baron" <bjorn3_gh@protonmail.com>,
"Alex Gaynor" <alex.gaynor@gmail.com>,
"Alice Ryhl" <aliceryhl@google.com>,
"Boqun Feng" <boqun.feng@gmail.com>,
"Gary Guo" <gary@garyguo.net>, "Trevor Gross" <tmgross@umich.edu>,
linux-kernel@vger.kernel.org, rust-for-linux@vger.kernel.org
Subject: Re: [PATCH v2 3/3] tools/docs: sphinx-* break documentation bulds on openSUSE
Date: Wed, 3 Sep 2025 10:41:12 -0700 [thread overview]
Message-ID: <76c552d4-878f-4ec4-a22c-c5b0f7903eba@infradead.org> (raw)
In-Reply-To: <29135db8c8094006f256e1fa0b64663c735737e7.1756916565.git.mchehab+huawei@kernel.org>
On 9/3/25 9:24 AM, Mauro Carvalho Chehab wrote:
> Before this patch, building htmldocs on opensuseLEAP works
> fine:
>
> # make htmldocs
> Available Python versions:
> /usr/bin/python3.11
>
> Python 3.6.15 not supported. Changing to /usr/bin/python3.11
> Python 3.6.15 not supported. Changing to /usr/bin/python3.11
> Using alabaster theme
> Using Python kernel-doc
>
> ...
>
> As the logic detects that Python 3.6 is too old and recommends
> intalling python311-Sphinx. If installed, documentation builds
> work like a charm.
>
> Yet, some develpers complained that running python3.11 instead
> of python3 should not happen. So, let's break the build to make
> them happier:
>
> $ make htmldocs
> Python 3.6.15 not supported. Bailing out
> You could run, instead:
> /usr/bin/python3.11 /root/tools/docs/sphinx-build-wrapper htmldocs --sphinxdirs=. --conf=conf.py --theme= --css= --paper=
/root
??
>
> Python 3.6.15 not supported. Bailing out
> make[2]: *** [Documentation/Makefile:75: htmldocs] Error 1
> make[1]: *** [/root/Makefile:1806: htmldocs] Error 2
> make: *** [Makefile:248: __sub-make] Error 2
>
> It should be noticed that:
>
> 1. after this change, sphinx-pre-install needs to be called
> by hand:
>
> $ /usr/bin/python3.11 tools/docs/sphinx-pre-install
> Detected OS: openSUSE Leap 15.6.
> Sphinx version: 7.2.6
>
> All optional dependencies are met.
> Needed package dependencies are met.
>
> 2. sphinx-build-wrapper will auto-detect python3.11 and
> suggest a way to build the docs using the parameters passed
> via make variables. In this specific example:
>
> /usr/bin/python3.11 /root/tools/docs/sphinx-build-wrapper htmldocs --sphinxdirs=. --conf=conf.py --theme= --css= --paper=
ditto.
>
> 3. As this needs to be executed outside docs Makefile, it won't run
> the validation check scripts nor build Rust documentation if
> enabled, as the extra scripts are part of the docs Makefile.
>
> Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
> ---
> tools/docs/sphinx-build-wrapper | 3 ++-
> tools/docs/sphinx-pre-install | 3 ++-
> 2 files changed, 4 insertions(+), 2 deletions(-)
>
> diff --git a/tools/docs/sphinx-build-wrapper b/tools/docs/sphinx-build-wrapper
> index 932b1b675274..48e6e0a76aeb 100755
> --- a/tools/docs/sphinx-build-wrapper
> +++ b/tools/docs/sphinx-build-wrapper
> @@ -719,7 +719,8 @@ def main():
>
> args = parser.parse_args()
>
> - PythonVersion.check_python(MIN_PYTHON_VERSION)
> + PythonVersion.check_python(MIN_PYTHON_VERSION, show_alternatives=True,
> + bail_out=True)
>
> builder = SphinxBuilder(venv=args.venv, verbose=args.verbose,
> n_jobs=args.jobs, interactive=args.interactive)
> diff --git a/tools/docs/sphinx-pre-install b/tools/docs/sphinx-pre-install
> index 663d4e2a3f57..698989584b6a 100755
> --- a/tools/docs/sphinx-pre-install
> +++ b/tools/docs/sphinx-pre-install
> @@ -1531,7 +1531,8 @@ def main():
>
> checker = SphinxDependencyChecker(args)
>
> - PythonVersion.check_python(MIN_PYTHON_VERSION)
> + PythonVersion.check_python(MIN_PYTHON_VERSION,
> + bail_out=True, success_on_error=True)
> checker.check_needs()
>
> # Call main if not used as module
--
~Randy
next prev parent reply other threads:[~2025-09-03 17:41 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <cover.1756916565.git.mchehab+huawei@kernel.org>
2025-09-03 16:24 ` [PATCH v2 3/3] tools/docs: sphinx-* break documentation bulds on openSUSE Mauro Carvalho Chehab
2025-09-03 17:38 ` Matthew Wilcox
2025-09-04 5:18 ` Mauro Carvalho Chehab
2025-09-03 17:41 ` Randy Dunlap [this message]
2025-09-03 19:17 ` Mauro Carvalho Chehab
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=76c552d4-878f-4ec4-a22c-c5b0f7903eba@infradead.org \
--to=rdunlap@infradead.org \
--cc=alex.gaynor@gmail.com \
--cc=aliceryhl@google.com \
--cc=bjorn3_gh@protonmail.com \
--cc=boqun.feng@gmail.com \
--cc=corbet@lwn.net \
--cc=gary@garyguo.net \
--cc=linux-doc@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mchehab+huawei@kernel.org \
--cc=rust-for-linux@vger.kernel.org \
--cc=tmgross@umich.edu \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).