From: Julien Palard Date: Mon, 22 Nov 2021 23:17:54 +0000 (+0100) Subject: bpo-42238: [doc] Announce the future removal of make suspicous. (GH-29652) X-Git-Tag: v3.11.0a3~161 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=024209401ebc8a011f242af00efdd8ecece6953d;p=thirdparty%2FPython%2Fcpython.git 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. --- diff --git a/Doc/Makefile b/Doc/Makefile index 24528a1c4f32..19ddafc5f2f9 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 000000000000..dac8b17d15d4 --- /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.