From da876af009810f34c054d9e967813603dc116dc1 Mon Sep 17 00:00:00 2001 From: Adam Turner <9087854+aa-turner@users.noreply.github.com> Date: Sat, 22 Feb 2025 02:22:24 +0000 Subject: [PATCH] GH-125722: Increase minimum supported Sphinx to 8.2.0 --- Doc/conf.py | 2 +- .../2025-02-22-02-24-39.gh-issue-125722.zDIUFV.rst | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 Misc/NEWS.d/next/Documentation/2025-02-22-02-24-39.gh-issue-125722.zDIUFV.rst diff --git a/Doc/conf.py b/Doc/conf.py index 56594f32c6d02d..13ae940d6da256 100644 --- a/Doc/conf.py +++ b/Doc/conf.py @@ -100,7 +100,7 @@ # Minimum version of sphinx required # Keep this version in sync with ``Doc/requirements.txt``. -needs_sphinx = '8.1.3' +needs_sphinx = '8.2.0' # Create table of contents entries for domain objects (e.g. functions, classes, # attributes, etc.). Default is True. diff --git a/Misc/NEWS.d/next/Documentation/2025-02-22-02-24-39.gh-issue-125722.zDIUFV.rst b/Misc/NEWS.d/next/Documentation/2025-02-22-02-24-39.gh-issue-125722.zDIUFV.rst new file mode 100644 index 00000000000000..6e20c08163ff03 --- /dev/null +++ b/Misc/NEWS.d/next/Documentation/2025-02-22-02-24-39.gh-issue-125722.zDIUFV.rst @@ -0,0 +1,2 @@ +Require Sphinx 8.2.0 or later to build the Python documentation. Patch by +Adam Turner.