From 7459b0fb8fb3ec80c40b10ee4b6891c99d4db4b1 Mon Sep 17 00:00:00 2001 From: Anthony Sottile Date: Fri, 15 Feb 2019 15:34:01 -0800 Subject: [PATCH] Bump minimum sphinx version to 1.8 --- Doc/conf.py | 4 ++-- .../Documentation/2019-02-15-15-33-41.bpo-36007.OTFrza.rst | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) create mode 100644 Misc/NEWS.d/next/Documentation/2019-02-15-15-33-41.bpo-36007.OTFrza.rst diff --git a/Doc/conf.py b/Doc/conf.py index a9dfe827a0dd0a..afe66270c10e8c 100644 --- a/Doc/conf.py +++ b/Doc/conf.py @@ -41,8 +41,8 @@ # By default, highlight as Python 3. highlight_language = 'python3' -# Require Sphinx 1.7 for build. -needs_sphinx = '1.7' +# Minimum version of sphinx required +needs_sphinx = '1.8' # Ignore any .rst files in the venv/ directory. venvdir = os.getenv('VENVDIR', 'venv') diff --git a/Misc/NEWS.d/next/Documentation/2019-02-15-15-33-41.bpo-36007.OTFrza.rst b/Misc/NEWS.d/next/Documentation/2019-02-15-15-33-41.bpo-36007.OTFrza.rst new file mode 100644 index 00000000000000..e8061b3d09a2ff --- /dev/null +++ b/Misc/NEWS.d/next/Documentation/2019-02-15-15-33-41.bpo-36007.OTFrza.rst @@ -0,0 +1 @@ +Bump minimum sphinx version to 1.8. Patch by Anthony Sottile.