bpo-36007: Bump minimum sphinx version to 1.8 (GH-11887)

https://bugs.python.org/issue36007
This commit is contained in:
Anthony Sottile 2019-02-15 18:41:15 -05:00 committed by Miss Islington (bot)
parent 36433221f0
commit a16ab00c0b
2 changed files with 3 additions and 2 deletions

View File

@ -41,8 +41,8 @@ today_fmt = '%B %d, %Y'
# 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')

View File

@ -0,0 +1 @@
Bump minimum sphinx version to 1.8. Patch by Anthony Sottile.