[Python-checkins] bpo-42238: [doc] Announce the future removal of make suspicous. (GH-29652)

willingc webhook-mailer at python.org
Mon Nov 22 18:18:02 EST 2021


https://github.com/python/cpython/commit/024209401ebc8a011f242af00efdd8ecece6953d
commit: 024209401ebc8a011f242af00efdd8ecece6953d
branch: main
author: Julien Palard <julien at palard.fr>
committer: willingc <carolcode at willingconsulting.com>
date: 2021-11-22T15:17:54-08:00
summary:

bpo-42238: [doc] Announce the future removal of make suspicous. (GH-29652)

* bpo-42238: [doc] Announce the future removal of make suspicous.

* Add a news entry.

files:
A Misc/NEWS.d/next/Documentation/2021-11-20-02-46-39.bpo-42238.hlfMIc.rst
M Doc/Makefile

diff --git a/Doc/Makefile b/Doc/Makefile
index 24528a1c4f326..19ddafc5f2f9f 100644
--- a/Doc/Makefile
+++ b/Doc/Makefile
@@ -117,6 +117,10 @@ suspicious:
 	     "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
diff --git a/Misc/NEWS.d/next/Documentation/2021-11-20-02-46-39.bpo-42238.hlfMIc.rst b/Misc/NEWS.d/next/Documentation/2021-11-20-02-46-39.bpo-42238.hlfMIc.rst
new file mode 100644
index 0000000000000..dac8b17d15d40
--- /dev/null
+++ b/Misc/NEWS.d/next/Documentation/2021-11-20-02-46-39.bpo-42238.hlfMIc.rst
@@ -0,0 +1,2 @@
+``make -C Doc suspicious`` will be removed soon in favor of ``make -C Doc
+check``, mark it as deprecated.



More information about the Python-checkins mailing list