diff options
author | Julien Palard <julien@palard.fr> | 2022-10-11 13:31:33 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-11 13:31:33 (GMT) |
commit | 4067c6d7fe9b0b266367aafa8cde71e2761cb764 (patch) | |
tree | 50295f994bd202343b5bcb040a5014aea98a3f09 /Doc/Makefile | |
parent | ad8e297b7297dfdc34fad53b589b31d0920150ab (diff) | |
download | cpython-4067c6d7fe9b0b266367aafa8cde71e2761cb764.zip cpython-4067c6d7fe9b0b266367aafa8cde71e2761cb764.tar.gz cpython-4067c6d7fe9b0b266367aafa8cde71e2761cb764.tar.bz2 |
gh-86404: Doc: Drop now unused make suspicious and rstlint. (GH-98179)
They have been replaced by
[sphinx-lint](https://github.com/sphinx-contrib/sphinx-lint).
Diffstat (limited to 'Doc/Makefile')
-rw-r--r-- | Doc/Makefile | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/Doc/Makefile b/Doc/Makefile index 5b6a958..f520874 100644 --- a/Doc/Makefile +++ b/Doc/Makefile @@ -22,7 +22,7 @@ ALLSPHINXOPTS = -b $(BUILDER) -d build/doctrees $(PAPEROPT_$(PAPER)) -j auto \ $(SPHINXOPTS) $(SPHINXERRORHANDLING) . build/$(BUILDER) $(SOURCES) .PHONY: help build html htmlhelp latex text texinfo changes linkcheck \ - suspicious coverage doctest pydoc-topics htmlview clean dist check serve \ + coverage doctest pydoc-topics htmlview clean dist check serve \ autobuild-dev autobuild-stable venv help: @@ -42,7 +42,6 @@ help: @echo " doctest to run doctests in the documentation" @echo " pydoc-topics to regenerate the pydoc topics file" @echo " dist to create a \"dist\" directory with archived docs for download" - @echo " suspicious to check for suspicious markup in output text" @echo " check to run a check for frequent markup errors" build: @@ -110,18 +109,6 @@ linkcheck: "or in build/$(BUILDER)/output.txt"; \ false; } -suspicious: BUILDER = suspicious -suspicious: - @$(MAKE) build BUILDER=$(BUILDER) || { \ - echo "Suspicious check complete; look for any errors in the above output" \ - "or in build/$(BUILDER)/suspicious.csv. If all issues are false" \ - "positives, append that file to tools/susp-ignored.csv."; \ - false; } - @echo "⚠ make suspicious is deprecated and will be removed soon." - @echo "⚠ Use:" - @echo "⚠ make check" - @echo "⚠ instead." - coverage: BUILDER = coverage coverage: build @echo "Coverage finished; see c.txt and python.txt in build/coverage" |