diff options
author | Davide Rizzo <sorcio@gmail.com> | 2022-06-07 08:05:38 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-07 08:05:38 (GMT) |
commit | 57e8ee7086bf3f5c50c901e9d5896275644bbb54 (patch) | |
tree | 3c9c626a5c37e78ab226f4743a47994ceafb4694 | |
parent | 890c3be8fb10bc329de06fa9d3b18dd8d90aa8b5 (diff) | |
download | cpython-57e8ee7086bf3f5c50c901e9d5896275644bbb54.zip cpython-57e8ee7086bf3f5c50c901e9d5896275644bbb54.tar.gz cpython-57e8ee7086bf3f5c50c901e9d5896275644bbb54.tar.bz2 |
gh-86986: bump min sphinx version to 3.2 (GH-93337)
-rw-r--r-- | Doc/conf.py | 2 | ||||
-rw-r--r-- | Misc/NEWS.d/next/Documentation/2022-05-29-21-22-54.gh-issue-86986.lFXw8j.rst | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/Doc/conf.py b/Doc/conf.py index e539da5..46cbab2 100644 --- a/Doc/conf.py +++ b/Doc/conf.py @@ -45,7 +45,7 @@ today_fmt = '%B %d, %Y' highlight_language = 'python3' # Minimum version of sphinx required -needs_sphinx = '1.8' +needs_sphinx = '3.2' # Ignore any .rst files in the venv/ directory. exclude_patterns = ['venv/*', 'README.rst'] diff --git a/Misc/NEWS.d/next/Documentation/2022-05-29-21-22-54.gh-issue-86986.lFXw8j.rst b/Misc/NEWS.d/next/Documentation/2022-05-29-21-22-54.gh-issue-86986.lFXw8j.rst new file mode 100644 index 0000000..1db028c --- /dev/null +++ b/Misc/NEWS.d/next/Documentation/2022-05-29-21-22-54.gh-issue-86986.lFXw8j.rst @@ -0,0 +1 @@ +The minimum Sphinx version required to build the documentation is now 3.2. |