]> git.ipfire.org Git - thirdparty/babel.git/commitdiff
Update authors file
authorAarni Koskela <akx@iki.fi>
Sun, 1 Feb 2026 12:01:44 +0000 (13:01 +0100)
committerAarni Koskela <akx@iki.fi>
Sun, 1 Feb 2026 12:01:44 +0000 (13:01 +0100)
AUTHORS
scripts/generate_authors.py

diff --git a/AUTHORS b/AUTHORS
index 89353ae0fd3f55f20a8a90e2fc897ce02840b63f..79e18d46d37b794bda83ba11d751e4c0fa86c1dc 100644 (file)
--- a/AUTHORS
+++ b/AUTHORS
@@ -24,6 +24,7 @@ Babel is written and maintained by the Babel team and various contributors:
 - Hugo van Kemenade
 - Jun Omae
 - Heungsub Lee
+- Boris Verkhovskiy
 - Jakob Schnitzer
 - Sachin Paliwal
 - Alex Willmer
@@ -49,6 +50,9 @@ Babel is written and maintained by the Babel team and various contributors:
 - Arturas Moskvinas
 - Leonardo Pistone
 - Hyunjun Kim
+- Bart Broere
+- Guillaume Gauvrit
+- clach04
 - wandrew004
 - James McKinney
 - Tomáš Hrnčiar
index cd18f640ac98c97106b06398e2af68dc969343c6..c7387d7445d6f86055a0998c75f78a7dd7305677 100644 (file)
@@ -9,6 +9,7 @@ aliases = {
     re.compile("Jun Omae"): "Jun Omae",
     re.compile(r"^Hugo$"): "Hugo van Kemenade",
     re.compile(r"^Tomas R([.])?"): "Tomas R.",
+    re.compile(r"^Ruff$"): "",  # It's a robot
 }
 
 
@@ -22,7 +23,7 @@ def map_alias(name):
 def get_sorted_authors_list():
     authors = check_output(['git', 'log', '--format=%aN'], cwd=root_path).decode('UTF-8')
     counts = Counter(map_alias(name) for name in authors.splitlines())
-    return [author for (author, count) in counts.most_common()]
+    return [author for (author, count) in counts.most_common() if author]
 
 
 def get_authors_file_content():