bpo-34081: Fix wrong example link that was linking to distutils (GH-8248)

This commit is contained in:
Xtreak 2018-10-21 20:24:52 +05:30 committed by Julien Palard
parent c3f52a59ce
commit 121eb1694c
3 changed files with 3 additions and 2 deletions

View File

@ -12,7 +12,7 @@ steps:
inputs: inputs:
versionSpec: '>=3.6' versionSpec: '>=3.6'
- script: python -m pip install sphinx~=1.6.1 blurb python-docs-theme - script: python -m pip install sphinx==1.8.1 blurb python-docs-theme
displayName: 'Install build dependencies' displayName: 'Install build dependencies'
- ${{ if ne(parameters.latex, 'true') }}: - ${{ if ne(parameters.latex, 'true') }}:

View File

@ -12,7 +12,7 @@ PAPER =
SOURCES = SOURCES =
DISTVERSION = $(shell $(PYTHON) tools/extensions/patchlevel.py) DISTVERSION = $(shell $(PYTHON) tools/extensions/patchlevel.py)
ALLSPHINXOPTS = -b $(BUILDER) -d build/doctrees -D latex_elements.papersize=$(PAPER) \ ALLSPHINXOPTS = -b $(BUILDER) -d build/doctrees -W -D latex_elements.papersize=$(PAPER) \
$(SPHINXOPTS) . build/$(BUILDER) $(SOURCES) $(SPHINXOPTS) . build/$(BUILDER) $(SOURCES)
.PHONY: help build html htmlhelp latex text changes linkcheck \ .PHONY: help build html htmlhelp latex text changes linkcheck \

View File

@ -0,0 +1 @@
Make Sphinx warnings as errors in the Docs Makefile.