From: Aarni Koskela Date: Sun, 1 Feb 2026 12:01:44 +0000 (+0100) Subject: Update authors file X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=87faeec74beaf39dedf85464da672a954d6a727f;p=thirdparty%2Fbabel.git Update authors file --- diff --git a/AUTHORS b/AUTHORS index 89353ae0..79e18d46 100644 --- 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 diff --git a/scripts/generate_authors.py b/scripts/generate_authors.py index cd18f640..c7387d74 100644 --- a/scripts/generate_authors.py +++ b/scripts/generate_authors.py @@ -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():