Skip to content

Commit fbf64d2

Browse files
authored
Don't thank pytest bot (#9372)
1 parent 3a479db commit fbf64d2

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

scripts/release.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,11 @@ def announce(version, template_name):
2020
stdout = check_output(["git", "log", f"{last_version}..HEAD", "--format=%aN"])
2121
stdout = stdout.decode("utf-8")
2222

23-
contributors = {name for name in stdout.splitlines() if not name.endswith("[bot]")}
23+
contributors = {
24+
name
25+
for name in stdout.splitlines()
26+
if not name.endswith("[bot]") and name != "pytest bot"
27+
}
2428

2529
template_text = (
2630
Path(__file__).parent.joinpath(template_name).read_text(encoding="UTF-8")

0 commit comments

Comments
 (0)