Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 75dc5b3

Browse files
JulienPalardremykarem
authored andcommittedDec 7, 2021
bpo-42238: [doc] Announce the future removal of make suspicous. (pythonGH-29652)
* bpo-42238: [doc] Announce the future removal of make suspicous. * Add a news entry.
1 parent a9cafa2 commit 75dc5b3

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed
 

‎Doc/Makefile

+4
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,10 @@ suspicious:
117117
"or in build/$(BUILDER)/suspicious.csv. If all issues are false" \
118118
"positives, append that file to tools/susp-ignored.csv."; \
119119
false; }
120+
@echo "⚠ make suspicious is deprecated and will be removed soon."
121+
@echo "⚠ Use:"
122+
@echo "⚠ make check"
123+
@echo "⚠ instead."
120124

121125
coverage: BUILDER = coverage
122126
coverage: build
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
``make -C Doc suspicious`` will be removed soon in favor of ``make -C Doc
2+
check``, mark it as deprecated.

0 commit comments

Comments
 (0)
Please sign in to comment.