From ba7c32b78474b2c8a0ac82fbe8e1f3effd0ced7e Mon Sep 17 00:00:00 2001 From: Chris Markiewicz Date: Sun, 1 Mar 2020 20:56:32 -0500 Subject: [PATCH] MNT: Add Zenodo blacklist --- tools/update_zenodo.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tools/update_zenodo.py b/tools/update_zenodo.py index cece8d53fd..e63c2ed2e7 100755 --- a/tools/update_zenodo.py +++ b/tools/update_zenodo.py @@ -14,6 +14,9 @@ def decommify(name): # These names should go last CREATORS_LAST = ["Krzysztof J. Gorgolewski", "Satrajit Ghosh"] +# Contributors that have requested not to be cited (or bothered) +BLACKLIST = {"Jonathan R. Williford"} + if __name__ == "__main__": git_root = Path(git.Repo(".", search_parent_directories=True).working_dir) zenodo_file = git_root / ".zenodo.json" @@ -44,7 +47,8 @@ def decommify(name): ) match, score = matches[0] if score <= 80: - print("No entry to sort:", committer) + if committer not in BLACKLIST: + print("No entry to sort:", committer) continue existing_creators.discard(match) committers.append(match)