]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-42238: [doc] Announce the future removal of make suspicous. (GH-29652)
authorJulien Palard <julien@palard.fr>
Mon, 22 Nov 2021 23:17:54 +0000 (00:17 +0100)
committerGitHub <noreply@github.com>
Mon, 22 Nov 2021 23:17:54 +0000 (15:17 -0800)
* bpo-42238: [doc] Announce the future removal of make suspicous.

* Add a news entry.

Doc/Makefile
Misc/NEWS.d/next/Documentation/2021-11-20-02-46-39.bpo-42238.hlfMIc.rst [new file with mode: 0644]

index 24528a1c4f326933ef067f73c2cc255cf1364b72..19ddafc5f2f9fc7c6709dd8a7f16730abb04a32a 100644 (file)
@@ -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 (file)
index 0000000..dac8b17
--- /dev/null
@@ -0,0 +1,2 @@
+``make -C Doc suspicious`` will be removed soon in favor of ``make -C Doc
+check``, mark it as deprecated.