We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent faef7d0 commit 79f11d9Copy full SHA for 79f11d9
tools/update_zenodo.py
@@ -14,6 +14,9 @@ def decommify(name):
14
# These names should go last
15
CREATORS_LAST = ["Krzysztof J. Gorgolewski", "Satrajit Ghosh"]
16
17
+# Contributors that have requested not to be cited (or bothered)
18
+BLACKLIST = {"Jonathan R. Williford"}
19
+
20
if __name__ == "__main__":
21
git_root = Path(git.Repo(".", search_parent_directories=True).working_dir)
22
zenodo_file = git_root / ".zenodo.json"
@@ -44,7 +47,8 @@ def decommify(name):
44
47
)
45
48
match, score = matches[0]
46
49
if score <= 80:
- print("No entry to sort:", committer)
50
+ if committer not in BLACKLIST:
51
+ print("No entry to sort:", committer)
52
continue
53
existing_creators.discard(match)
54
committers.append(match)
0 commit comments