Skip to content

Commit 79f11d9

Browse files
committed
MNT: Add Zenodo blacklist
1 parent faef7d0 commit 79f11d9

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

tools/update_zenodo.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ def decommify(name):
1414
# These names should go last
1515
CREATORS_LAST = ["Krzysztof J. Gorgolewski", "Satrajit Ghosh"]
1616

17+
# Contributors that have requested not to be cited (or bothered)
18+
BLACKLIST = {"Jonathan R. Williford"}
19+
1720
if __name__ == "__main__":
1821
git_root = Path(git.Repo(".", search_parent_directories=True).working_dir)
1922
zenodo_file = git_root / ".zenodo.json"
@@ -44,7 +47,8 @@ def decommify(name):
4447
)
4548
match, score = matches[0]
4649
if score <= 80:
47-
print("No entry to sort:", committer)
50+
if committer not in BLACKLIST:
51+
print("No entry to sort:", committer)
4852
continue
4953
existing_creators.discard(match)
5054
committers.append(match)

0 commit comments

Comments
 (0)