diff options
author | Julien Palard <julien@palard.fr> | 2021-11-22 23:17:54 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-22 23:17:54 (GMT) |
commit | 024209401ebc8a011f242af00efdd8ecece6953d (patch) | |
tree | daedcf7516a4ac53fdd85c456d361c096568fdbd | |
parent | 2dc7d3dda61e7ce07721f46b14c706fbc879dfd6 (diff) | |
download | cpython-024209401ebc8a011f242af00efdd8ecece6953d.zip cpython-024209401ebc8a011f242af00efdd8ecece6953d.tar.gz cpython-024209401ebc8a011f242af00efdd8ecece6953d.tar.bz2 |
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.
-rw-r--r-- | Doc/Makefile | 4 | ||||
-rw-r--r-- | Misc/NEWS.d/next/Documentation/2021-11-20-02-46-39.bpo-42238.hlfMIc.rst | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/Doc/Makefile b/Doc/Makefile index 24528a1..19ddafc 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 0000000..dac8b17 --- /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. |