From b001023a52c781014bfeca57a0db2673e8f3b7ad Mon Sep 17 00:00:00 2001 From: Antti Kaihola <13725+akaihola@users.noreply.github.com> Date: Sat, 5 Aug 2023 23:28:19 +0300 Subject: [PATCH 01/10] Add @baod-rate as a contributor --- CONTRIBUTORS.rst | 1 + README.rst | 63 ++++++++++++++++++++++++++++------------------- contributors.yaml | 2 ++ 3 files changed, 40 insertions(+), 26 deletions(-) diff --git a/CONTRIBUTORS.rst b/CONTRIBUTORS.rst index ddf18a90b..79a59ffdb 100644 --- a/CONTRIBUTORS.rst +++ b/CONTRIBUTORS.rst @@ -14,6 +14,7 @@ - Antti Kaihola (@akaihola) - August Masquelier (@levouh) - Axel Dahlberg (@AckslD) +- Bao (@baod-rate) - Bao (@qubidt) - Ben Falk (@falkben) - Bharat Kunwar (@brtknr) diff --git a/README.rst b/README.rst index beae79bad..d6dae2eb9 100644 --- a/README.rst +++ b/README.rst @@ -1066,6 +1066,17 @@ Thanks goes to these wonderful people (`emoji key`_): + + + @baod-rate +
+ + Bao + +
+
+ πŸ’» + @qubidt @@ -1121,6 +1132,8 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› + + @chmouel @@ -1133,8 +1146,6 @@ Thanks goes to these wonderful people (`emoji key`_): πŸ’» πŸ› - - @cclauss @@ -1193,6 +1204,8 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› + + @DavidCDreher @@ -1204,8 +1217,6 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› - - @shangxiao @@ -1263,6 +1274,8 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› + + @phitoduck @@ -1274,8 +1287,6 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› - - @philipgian @@ -1332,6 +1343,8 @@ Thanks goes to these wonderful people (`emoji key`_): πŸ’» πŸ› + + @hugovk @@ -1343,8 +1356,6 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ’» - - @irynahryshanovich @@ -1401,6 +1412,8 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› + + @wkentaro @@ -1412,8 +1425,6 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› - - @Asuskf @@ -1469,6 +1480,8 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› + + @dwt @@ -1480,8 +1493,6 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› - - @matclayton @@ -1539,6 +1550,8 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› + + @Mystic-Mirage @@ -1552,8 +1565,6 @@ Thanks goes to these wonderful people (`emoji key`_): πŸ“– πŸ‘€ - - @njhuffman @@ -1613,6 +1624,8 @@ Thanks goes to these wonderful people (`emoji key`_): πŸ› πŸ‘€ + + @gesslerpd @@ -1624,8 +1637,6 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› - - @flying-sheep @@ -1681,6 +1692,8 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› + + @sherbie @@ -1692,8 +1705,6 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ‘€ - - @hauntsaninja @@ -1749,6 +1760,8 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› + + @talhajunaidd @@ -1760,8 +1773,6 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ’» - - @guettli @@ -1816,6 +1827,8 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› + + @yoursvivek @@ -1828,8 +1841,6 @@ Thanks goes to these wonderful people (`emoji key`_): πŸ› πŸ“– - - @Hainguyen1210 @@ -1886,6 +1897,8 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› + + @dsmanl @@ -1897,8 +1910,6 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› - - @leej3 @@ -1955,6 +1966,8 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› + + @overratedpro @@ -1966,8 +1979,6 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› - - @samoylovfp diff --git a/contributors.yaml b/contributors.yaml index 310149376..1959dd6e4 100644 --- a/contributors.yaml +++ b/contributors.yaml @@ -44,6 +44,8 @@ akaihola: - {link_type: commits, type: Maintenance} aljazerzen: - {link_type: commits, type: Code} +baod-rate: + - {link_type: pulls-author, type: Code} bdperkin: - {link_type: issues, type: Bug reports} brtknr: From 4e2820112973c302b41bbe492ae410969e20f59b Mon Sep 17 00:00:00 2001 From: Antti Kaihola <13725+akaihola@users.noreply.github.com> Date: Sat, 5 Aug 2023 23:30:43 +0300 Subject: [PATCH 02/10] Deal with deleted GitHub users --- release_tools/update_contributors.py | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/release_tools/update_contributors.py b/release_tools/update_contributors.py index c5812b72b..593395698 100644 --- a/release_tools/update_contributors.py +++ b/release_tools/update_contributors.py @@ -167,6 +167,10 @@ def verify() -> None: } +class NotFoundError(Exception): + pass + + class GitHubSession(CachedSession): """Caching HTTP request session with useful defaults @@ -203,6 +207,8 @@ def request( # type: ignore[override] # pylint: disable=arguments-differ if url.startswith("/"): url = f"https://api.github.com{url}" response = super().request(method, url, headers=hdrs, **kwargs) + if response.status_code == 404 and response.json()["message"] == "Not Found": + raise NotFoundError() if response.status_code != 200: raise RuntimeError( f"{response.status_code} {response.text} when requesting {url}" @@ -333,6 +339,11 @@ def _normalize_rtl_override(text: str) -> str: return text[-2:0:-1] +DELETED_USERS = { + "qubidt": {"id": 6306455, "name": "Bao", "login": "qubidt"}, +} + + def join_github_users_with_contributions( users_and_contributions: Dict[str, List[Contribution]], session: GitHubSession, @@ -346,7 +357,10 @@ def join_github_users_with_contributions( """ users: List[Contributor] = [] for username, contributions in users_and_contributions.items(): - gh_user = cast(GitHubUser, session.get(f"/users/{username}").json()) + try: + gh_user = cast(GitHubUser, session.get(f"/users/{username}").json()) + except NotFoundError: + gh_user = DELETED_USERS[username] name = _normalize_rtl_override(gh_user["name"]) try: contributor = Contributor( From 3dede6d95038cfae6fb1106639de2dc8f3ebc1b5 Mon Sep 17 00:00:00 2001 From: Antti Kaihola <13725+akaihola@users.noreply.github.com> Date: Fri, 23 Feb 2024 11:50:51 +0200 Subject: [PATCH 03/10] Add @dshemetov as a contributor --- CONTRIBUTORS.rst | 1 + README.rst | 55 ++++++++++++++++++++++++++++------------------- contributors.yaml | 2 ++ 3 files changed, 36 insertions(+), 22 deletions(-) diff --git a/CONTRIBUTORS.rst b/CONTRIBUTORS.rst index 79a59ffdb..d26f10143 100644 --- a/CONTRIBUTORS.rst +++ b/CONTRIBUTORS.rst @@ -30,6 +30,7 @@ - David Sanders (@shangxiao) - deadkex (@deadkex) - Dhruv Kumar Jha (@dhrvjha) +- Dmitry Shemetov (@dshemetov) - Dominik Kutra (@k-dominik) - dsmanl (@dsmanl) - Dustin Spicuzza (@virtuald) diff --git a/README.rst b/README.rst index d6dae2eb9..de82b40a8 100644 --- a/README.rst +++ b/README.rst @@ -1241,6 +1241,17 @@ Thanks goes to these wonderful people (`emoji key`_): πŸ› πŸ’» + + + @dshemetov +
+ + Dmitry Shemetov + +
+
+ πŸ› + @k-dominik @@ -1263,6 +1274,8 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› + + @DylanYoung @@ -1274,8 +1287,6 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› - - @phitoduck @@ -1331,6 +1342,8 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ’» + + @jabesq @@ -1343,8 +1356,6 @@ Thanks goes to these wonderful people (`emoji key`_): πŸ’» πŸ› - - @hugovk @@ -1401,6 +1412,8 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› + + @jenshnielsen @@ -1412,8 +1425,6 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› - - @wkentaro @@ -1469,6 +1480,8 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› + + @markddavidoff @@ -1480,8 +1493,6 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› - - @dwt @@ -1539,6 +1550,8 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ’» + + @my-tien @@ -1550,8 +1563,6 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› - - @Mystic-Mirage @@ -1611,6 +1622,8 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› + + @ivanov @@ -1624,8 +1637,6 @@ Thanks goes to these wonderful people (`emoji key`_): πŸ› πŸ‘€ - - @gesslerpd @@ -1681,6 +1692,8 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› + + @rossbar @@ -1692,8 +1705,6 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› - - @sherbie @@ -1749,6 +1760,8 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› + + @tkolleh @@ -1760,8 +1773,6 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› - - @talhajunaidd @@ -1816,6 +1827,8 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› + + @victorcui96 @@ -1827,8 +1840,6 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› - - @yoursvivek @@ -1886,6 +1897,8 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› + + @deadkex @@ -1897,8 +1910,6 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› - - @dsmanl @@ -1955,6 +1966,8 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› + + @okuuva @@ -1966,8 +1979,6 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› - - @overratedpro diff --git a/contributors.yaml b/contributors.yaml index 1959dd6e4..9b730357a 100644 --- a/contributors.yaml +++ b/contributors.yaml @@ -65,6 +65,8 @@ deadkex: dhrvjha: - {link_type: search-comments, type: Bug reports} - {link_type: pulls-author, type: Code} +dshemetov: + - {link_type: issues, type: Bug reports} dsmanl: - {link_type: issues, type: Bug reports} dwt: From 90a1a3adba399162fa78c37f2bd4d4e9b0be474e Mon Sep 17 00:00:00 2001 From: Antti Kaihola <13725+akaihola@users.noreply.github.com> Date: Fri, 23 Feb 2024 11:51:46 +0200 Subject: [PATCH 04/10] Add @sgaist as a contributor --- CONTRIBUTORS.rst | 1 + README.rst | 27 +++++++++++++++++++-------- contributors.yaml | 2 ++ 3 files changed, 22 insertions(+), 8 deletions(-) diff --git a/CONTRIBUTORS.rst b/CONTRIBUTORS.rst index d26f10143..39e4da2e8 100644 --- a/CONTRIBUTORS.rst +++ b/CONTRIBUTORS.rst @@ -78,6 +78,7 @@ - Ronie Martinez (@roniemartinez) - Ross Barnowski (@rossbar) - samoylovfp (@samoylovfp) +- Samuel Gaist (@sgaist) - Sean Hammond (@sherbie) - sfoucek (@simonf-dev) - Shantanu (@hauntsaninja) diff --git a/README.rst b/README.rst index de82b40a8..93a128e3a 100644 --- a/README.rst +++ b/README.rst @@ -1705,6 +1705,17 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› + + + @sgaist +
+ + Samuel Gaist + +
+
+ πŸ’» + @sherbie @@ -1749,6 +1760,8 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ“– + + @strzonnek @@ -1760,8 +1773,6 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› - - @tkolleh @@ -1816,6 +1827,8 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› + + @tgross35 @@ -1827,8 +1840,6 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› - - @victorcui96 @@ -1886,6 +1897,8 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› + + @zachnorton4C @@ -1897,8 +1910,6 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› - - @deadkex @@ -1955,6 +1966,8 @@ Thanks goes to these wonderful people (`emoji key`_): πŸ’» πŸ‘€ + + @mayk0gan @@ -1966,8 +1979,6 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› - - @okuuva diff --git a/contributors.yaml b/contributors.yaml index 9b730357a..fb3aa926d 100644 --- a/contributors.yaml +++ b/contributors.yaml @@ -157,6 +157,8 @@ rossbar: - {link_type: issues, type: Bug reports} samoylovfp: - {link_type: pulls-reviewed, type: Reviewed Pull Requests} +sgaist: + - {link_type: pulls-author, type: Code} shangxiao: - {link_type: pulls-author, type: Code} - {link_type: issues, type: Bug reports} From 2124d736ecca065319b90ecae5a7cef523c0ec56 Mon Sep 17 00:00:00 2001 From: Antti Kaihola <13725+akaihola@users.noreply.github.com> Date: Fri, 23 Feb 2024 11:55:04 +0200 Subject: [PATCH 05/10] Add @gergelypolonkai as a contributor --- CONTRIBUTORS.rst | 1 + README.rst | 53 +++++++++++++++++++++++++++++------------------ contributors.yaml | 2 ++ 3 files changed, 36 insertions(+), 20 deletions(-) diff --git a/CONTRIBUTORS.rst b/CONTRIBUTORS.rst index 39e4da2e8..77432ac3d 100644 --- a/CONTRIBUTORS.rst +++ b/CONTRIBUTORS.rst @@ -39,6 +39,7 @@ - Filippos Giannakos (@philipgian) - Fox_white (@foxwhite25) - Georges Discry (@gdiscry) +- Gergely Polonkai (@gergelypolonkai) - Giel van Schijndel (@muggenhor) - Hugo Dupras (@jabesq) - Hugo van Kemenade (@hugovk) diff --git a/README.rst b/README.rst index 93a128e3a..8928ac247 100644 --- a/README.rst +++ b/README.rst @@ -1331,6 +1331,19 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ’» + + + @gergelypolonkai +
+ + Gergely Polonkai + +
+
+ πŸ› + + + @muggenhor @@ -1342,8 +1355,6 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ’» - - @jabesq @@ -1401,6 +1412,8 @@ Thanks goes to these wonderful people (`emoji key`_): πŸ› πŸ‘€ + + @jedie @@ -1412,8 +1425,6 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› - - @jenshnielsen @@ -1469,6 +1480,8 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› + + @magnunm @@ -1480,8 +1493,6 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› - - @markddavidoff @@ -1539,6 +1550,8 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› + + @minrk @@ -1550,8 +1563,6 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ’» - - @my-tien @@ -1611,6 +1622,8 @@ Thanks goes to these wonderful people (`emoji key`_): πŸ’» πŸ‘€ + + @PatrickJordanCongenica @@ -1622,8 +1635,6 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› - - @ivanov @@ -1681,6 +1692,8 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› + + @roniemartinez @@ -1692,8 +1705,6 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› - - @rossbar @@ -1749,6 +1760,8 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ‘€ + + @soxofaan @@ -1760,8 +1773,6 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ“– - - @strzonnek @@ -1816,6 +1827,8 @@ Thanks goes to these wonderful people (`emoji key`_):
+ + @tapted @@ -1827,8 +1840,6 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› - - @tgross35 @@ -1886,6 +1897,8 @@ Thanks goes to these wonderful people (`emoji key`_): πŸ› πŸ“– + + @wpnbos @@ -1897,8 +1910,6 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› - - @zachnorton4C @@ -1954,6 +1965,8 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› + + @martinRenou @@ -1966,8 +1979,6 @@ Thanks goes to these wonderful people (`emoji key`_): πŸ’» πŸ‘€ - - @mayk0gan @@ -2023,6 +2034,8 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› + + @rogalski diff --git a/contributors.yaml b/contributors.yaml index fb3aa926d..98c26d502 100644 --- a/contributors.yaml +++ b/contributors.yaml @@ -81,6 +81,8 @@ foxwhite25: - {link_type: search, type: Bug reports} gdiscry: - {link_type: pulls-author, type: Code} +gergelypolonkai: + - {link_type: issues, type: Bug reports} gesslerpd: - {link_type: issues, type: Bug reports} guettli: From 26fce64bba576db86f8ba2c3478a047c9a11ab66 Mon Sep 17 00:00:00 2001 From: Antti Kaihola <13725+akaihola@users.noreply.github.com> Date: Fri, 23 Feb 2024 11:59:49 +0200 Subject: [PATCH 06/10] Add @dkeraudren and @seweissman as contributors --- CONTRIBUTORS.rst | 2 ++ README.rst | 74 ++++++++++++++++++++++++++++++----------------- contributors.yaml | 4 +++ 3 files changed, 54 insertions(+), 26 deletions(-) diff --git a/CONTRIBUTORS.rst b/CONTRIBUTORS.rst index 77432ac3d..2a1f6f062 100644 --- a/CONTRIBUTORS.rst +++ b/CONTRIBUTORS.rst @@ -25,6 +25,7 @@ - Christian Decker (@chrisdecker1201) - Christophe Simonis (@KangOl) - Correy Lim (@CorreyL) +- Damien Keraudren (@dkeraudren) - Daniel Martin (@fizbin) - David Dreher (@DavidCDreher) - David Sanders (@shangxiao) @@ -80,6 +81,7 @@ - Ross Barnowski (@rossbar) - samoylovfp (@samoylovfp) - Samuel Gaist (@sgaist) +- Sarah (@seweissman) - Sean Hammond (@sherbie) - sfoucek (@simonf-dev) - Shantanu (@hauntsaninja) diff --git a/README.rst b/README.rst index 8928ac247..b5f95ef43 100644 --- a/README.rst +++ b/README.rst @@ -1193,6 +1193,19 @@ Thanks goes to these wonderful people (`emoji key`_): πŸ“– πŸ‘€ + + + @dkeraudren +
+ + Damien Keraudren + +
+
+ πŸ› + + + @fizbin @@ -1204,8 +1217,6 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› - - @DavidCDreher @@ -1263,6 +1274,8 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› + + @virtuald @@ -1274,8 +1287,6 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› - - @DylanYoung @@ -1331,6 +1342,8 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ’» + + @gergelypolonkai @@ -1342,8 +1355,6 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› - - @muggenhor @@ -1400,6 +1411,8 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ‘€ + + @jasleen19 @@ -1412,8 +1425,6 @@ Thanks goes to these wonderful people (`emoji key`_): πŸ› πŸ‘€ - - @jedie @@ -1469,6 +1480,8 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› + + @leotrs @@ -1480,8 +1493,6 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› - - @magnunm @@ -1539,6 +1550,8 @@ Thanks goes to these wonderful people (`emoji key`_): πŸ“– πŸ‘€ + + @MatthijsBurgh @@ -1550,8 +1563,6 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› - - @minrk @@ -1610,6 +1621,8 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› + + @Pacu2 @@ -1622,8 +1635,6 @@ Thanks goes to these wonderful people (`emoji key`_): πŸ’» πŸ‘€ - - @PatrickJordanCongenica @@ -1681,6 +1692,8 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› + + @ioggstream @@ -1692,8 +1705,6 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› - - @roniemartinez @@ -1727,6 +1738,17 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ’» + + + @seweissman +
+ + Sarah + +
+
+ πŸ› + @sherbie @@ -1738,6 +1760,8 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ‘€ + + @hauntsaninja @@ -1760,8 +1784,6 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ‘€ - - @soxofaan @@ -1806,6 +1828,8 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ’» + + @guettli @@ -1827,8 +1851,6 @@ Thanks goes to these wonderful people (`emoji key`_):
- - @tapted @@ -1874,6 +1896,8 @@ Thanks goes to these wonderful people (`emoji key`_): πŸ› πŸ“– + + @Hainguyen1210 @@ -1897,8 +1921,6 @@ Thanks goes to these wonderful people (`emoji key`_): πŸ› πŸ“– - - @wpnbos @@ -1943,6 +1965,8 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› + + @leej3 @@ -1965,8 +1989,6 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› - - @martinRenou @@ -2012,6 +2034,8 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› + + @samoylovfp @@ -2034,8 +2058,6 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› - - @rogalski diff --git a/contributors.yaml b/contributors.yaml index 98c26d502..d8f6e4247 100644 --- a/contributors.yaml +++ b/contributors.yaml @@ -65,6 +65,8 @@ deadkex: dhrvjha: - {link_type: search-comments, type: Bug reports} - {link_type: pulls-author, type: Code} +dkeraudren: + - {link_type: search-comments, type: Bug reports} dshemetov: - {link_type: issues, type: Bug reports} dsmanl: @@ -159,6 +161,8 @@ rossbar: - {link_type: issues, type: Bug reports} samoylovfp: - {link_type: pulls-reviewed, type: Reviewed Pull Requests} +seweissman: + - {link_type: issues, type: Bug reports} sgaist: - {link_type: pulls-author, type: Code} shangxiao: From 3f40d4ebe4652047aaf54ef2b23bf7bda2db78ea Mon Sep 17 00:00:00 2001 From: Antti Kaihola <13725+akaihola@users.noreply.github.com> Date: Fri, 23 Feb 2024 12:12:50 +0200 Subject: [PATCH 07/10] Add @kedhammar and @Ashblaze as contributors --- CONTRIBUTORS.rst | 2 ++ README.rst | 84 ++++++++++++++++++++++++++++++----------------- contributors.yaml | 6 ++++ 3 files changed, 62 insertions(+), 30 deletions(-) diff --git a/CONTRIBUTORS.rst b/CONTRIBUTORS.rst index 2a1f6f062..e7fa2396a 100644 --- a/CONTRIBUTORS.rst +++ b/CONTRIBUTORS.rst @@ -10,8 +10,10 @@ - Aaron Denney (@wnoise) - Aditya Gandra (@agandra) +- Alfred Kedhammar (@kedhammar) - AljaΕΎ Mur ErΕΎen (@aljazerzen) - Antti Kaihola (@akaihola) +- Ashblaze (@Ashblaze) - August Masquelier (@levouh) - Axel Dahlberg (@AckslD) - Bao (@baod-rate) diff --git a/README.rst b/README.rst index b5f95ef43..6269e6e62 100644 --- a/README.rst +++ b/README.rst @@ -1015,6 +1015,18 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› + + + @kedhammar +
+ + Alfred Kedhammar + +
+
+ πŸ› + πŸ› + @aljazerzen @@ -1041,6 +1053,19 @@ Thanks goes to these wonderful people (`emoji key`_): πŸ‘€ 🚧 + + + @Ashblaze +
+ + Ashblaze + +
+
+ πŸ› + + + @levouh @@ -1064,8 +1089,6 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› - - @baod-rate @@ -1098,6 +1121,7 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ“– + πŸ› @@ -1110,6 +1134,8 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ‘€ + + @bdperkin @@ -1132,8 +1158,6 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› - - @chmouel @@ -1180,6 +1204,8 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› + + @CorreyL @@ -1204,8 +1230,6 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› - - @fizbin @@ -1252,6 +1276,8 @@ Thanks goes to these wonderful people (`emoji key`_): πŸ› πŸ’» + + @dshemetov @@ -1274,8 +1300,6 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› - - @virtuald @@ -1320,6 +1344,8 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ’» + + @foxwhite25 @@ -1342,8 +1368,6 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ’» - - @gergelypolonkai @@ -1389,6 +1413,8 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ’» + + @irynahryshanovich @@ -1411,8 +1437,6 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ‘€ - - @jasleen19 @@ -1458,6 +1482,8 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› + + @Asuskf @@ -1480,8 +1506,6 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› - - @leotrs @@ -1526,6 +1550,8 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› + + @matclayton @@ -1550,8 +1576,6 @@ Thanks goes to these wonderful people (`emoji key`_): πŸ“– πŸ‘€ - - @MatthijsBurgh @@ -1598,6 +1622,8 @@ Thanks goes to these wonderful people (`emoji key`_): πŸ“– πŸ‘€ + + @njhuffman @@ -1621,8 +1647,6 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› - - @Pacu2 @@ -1670,6 +1694,8 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› + + @flying-sheep @@ -1692,8 +1718,6 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› - - @ioggstream @@ -1738,6 +1762,8 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ’» + + @seweissman @@ -1760,8 +1786,6 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ‘€ - - @hauntsaninja @@ -1806,6 +1830,8 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› + + @tkolleh @@ -1828,8 +1854,6 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ’» - - @guettli @@ -1873,6 +1897,8 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› + + @victorcui96 @@ -1896,8 +1922,6 @@ Thanks goes to these wonderful people (`emoji key`_): πŸ› πŸ“– - - @Hainguyen1210 @@ -1943,6 +1967,8 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› + + @deadkex @@ -1965,8 +1991,6 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› - - @leej3 @@ -2012,6 +2036,8 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› + + @okuuva @@ -2034,8 +2060,6 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› - - @samoylovfp diff --git a/contributors.yaml b/contributors.yaml index d8f6e4247..9a6b172af 100644 --- a/contributors.yaml +++ b/contributors.yaml @@ -1,6 +1,8 @@ --- AckslD: - {link_type: issues, type: Bug reports} +Ashblaze: + - {link_type: search-discussions, type: Bug reports} Asuskf: - {link_type: search-discussions, type: Bug reports} Carreau: @@ -75,6 +77,7 @@ dwt: - {link_type: issues, type: Bug reports} falkben: - {link_type: pulls-author, type: Documentation} + - {link_type: search-discussions, type: Bug reports} fizbin: - {link_type: issues, type: Bug reports} flying-sheep: @@ -115,6 +118,9 @@ jsuit: - {link_type: search-discussions, type: Bug reports} k-dominik: - {link_type: search-comments, type: Bug reports} +kedhammar: + - {link_type: search-discussions, type: Bug reports} + - {link_type: issues, type: Bug reports} leej3: - {link_type: search-comments, type: Bug reports} leotrs: From 262f37877bb3e84ab4dedc259c7b1afa022be361 Mon Sep 17 00:00:00 2001 From: Antti Kaihola <13725+akaihola@users.noreply.github.com> Date: Fri, 23 Feb 2024 12:13:57 +0200 Subject: [PATCH 08/10] Add @mrfroggg and @clintonsteiner as contributors --- CONTRIBUTORS.rst | 2 ++ README.rst | 76 +++++++++++++++++++++++++++++++---------------- contributors.yaml | 4 +++ 3 files changed, 56 insertions(+), 26 deletions(-) diff --git a/CONTRIBUTORS.rst b/CONTRIBUTORS.rst index e7fa2396a..bf7789ee1 100644 --- a/CONTRIBUTORS.rst +++ b/CONTRIBUTORS.rst @@ -22,11 +22,13 @@ - Bharat Kunwar (@brtknr) - Brandon Perkins (@bdperkin) - Carsten Kraus (@casio) +- Cedric (@mrfroggg) - Chmouel Boudjnah (@chmouel) - Christian Clauss (@cclauss) - Christian Decker (@chrisdecker1201) - Christophe Simonis (@KangOl) - Correy Lim (@CorreyL) +- csteiner (@clintonsteiner) - Damien Keraudren (@dkeraudren) - Daniel Martin (@fizbin) - David Dreher (@DavidCDreher) diff --git a/README.rst b/README.rst index 6269e6e62..240997214 100644 --- a/README.rst +++ b/README.rst @@ -1158,6 +1158,17 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› + + + @mrfroggg +
+ + Cedric + +
+
+ πŸ› + @chmouel @@ -1193,6 +1204,8 @@ Thanks goes to these wonderful people (`emoji key`_): πŸ’» πŸ› + + @KangOl @@ -1204,8 +1217,6 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› - - @CorreyL @@ -1264,6 +1275,8 @@ Thanks goes to these wonderful people (`emoji key`_): πŸ’» πŸ› + + @dhrvjha @@ -1276,8 +1289,6 @@ Thanks goes to these wonderful people (`emoji key`_): πŸ› πŸ’» - - @dshemetov @@ -1333,6 +1344,8 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› + + @philipgian @@ -1344,8 +1357,6 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ’» - - @foxwhite25 @@ -1402,6 +1413,8 @@ Thanks goes to these wonderful people (`emoji key`_): πŸ’» πŸ› + + @hugovk @@ -1413,8 +1426,6 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ’» - - @irynahryshanovich @@ -1471,6 +1482,8 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› + + @wkentaro @@ -1482,8 +1495,6 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› - - @Asuskf @@ -1539,6 +1550,8 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› + + @dwt @@ -1550,8 +1563,6 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› - - @matclayton @@ -1609,6 +1620,8 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› + + @Mystic-Mirage @@ -1622,8 +1635,6 @@ Thanks goes to these wonderful people (`emoji key`_): πŸ“– πŸ‘€ - - @njhuffman @@ -1683,6 +1694,8 @@ Thanks goes to these wonderful people (`emoji key`_): πŸ› πŸ‘€ + + @gesslerpd @@ -1694,8 +1707,6 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› - - @flying-sheep @@ -1751,6 +1762,8 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› + + @sgaist @@ -1762,8 +1775,6 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ’» - - @seweissman @@ -1819,6 +1830,8 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ“– + + @strzonnek @@ -1830,8 +1843,6 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› - - @tkolleh @@ -1886,6 +1897,8 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› + + @tgross35 @@ -1897,8 +1910,6 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› - - @victorcui96 @@ -1956,6 +1967,8 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› + + @zachnorton4C @@ -1967,8 +1980,17 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› - - + + + @clintonsteiner +
+ + csteiner + +
+
+ πŸ› + @deadkex @@ -2013,6 +2035,8 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› + + @martinRenou @@ -2036,8 +2060,6 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› - - @okuuva @@ -2082,6 +2104,8 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› + + @rogalski diff --git a/contributors.yaml b/contributors.yaml index 9a6b172af..cc70327fe 100644 --- a/contributors.yaml +++ b/contributors.yaml @@ -62,6 +62,8 @@ chmouel: chrisdecker1201: - {link_type: pulls-author, type: Code} - {link_type: issues, type: Bug reports} +clintonsteiner: + - {link_type: issues, type: Bug reports} deadkex: - {link_type: search-discussions, type: Bug reports} dhrvjha: @@ -141,6 +143,8 @@ mayk0gan: - {link_type: issues, type: Bug reports} minrk: - {link_type: darker-feedstock-issues, type: Code} +mrfroggg: + - {link_type: search-comments, type: Bug reports} muggenhor: - {link_type: commits, type: Code} my-tien: From 702edfdbd70ad991395afb88437893b859fb0aaf Mon Sep 17 00:00:00 2001 From: Antti Kaihola <13725+akaihola@users.noreply.github.com> Date: Fri, 23 Feb 2024 12:31:51 +0200 Subject: [PATCH 09/10] Add @Eyobkibret15 as a contributor --- CONTRIBUTORS.rst | 1 + README.rst | 55 ++++++++++++++++++++++++++++------------------- contributors.yaml | 2 ++ 3 files changed, 36 insertions(+), 22 deletions(-) diff --git a/CONTRIBUTORS.rst b/CONTRIBUTORS.rst index bf7789ee1..e094fc948 100644 --- a/CONTRIBUTORS.rst +++ b/CONTRIBUTORS.rst @@ -41,6 +41,7 @@ - Dustin Spicuzza (@virtuald) - DylanYoung (@DylanYoung) - Eric Riddoch (@phitoduck) +- Eyob Kibret (@Eyobkibret15) - Filippos Giannakos (@philipgian) - Fox_white (@foxwhite25) - Georges Discry (@gdiscry) diff --git a/README.rst b/README.rst index 240997214..eb3f442fb 100644 --- a/README.rst +++ b/README.rst @@ -1346,6 +1346,17 @@ Thanks goes to these wonderful people (`emoji key`_): + + + @Eyobkibret15 +
+ + Eyob Kibret + +
+
+ πŸ› + @philipgian @@ -1401,6 +1412,8 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ’» + + @jabesq @@ -1413,8 +1426,6 @@ Thanks goes to these wonderful people (`emoji key`_): πŸ’» πŸ› - - @hugovk @@ -1471,6 +1482,8 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› + + @jenshnielsen @@ -1482,8 +1495,6 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› - - @wkentaro @@ -1539,6 +1550,8 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› + + @markddavidoff @@ -1550,8 +1563,6 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› - - @dwt @@ -1609,6 +1620,8 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ’» + + @my-tien @@ -1620,8 +1633,6 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› - - @Mystic-Mirage @@ -1681,6 +1692,8 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› + + @ivanov @@ -1694,8 +1707,6 @@ Thanks goes to these wonderful people (`emoji key`_): πŸ› πŸ‘€ - - @gesslerpd @@ -1751,6 +1762,8 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› + + @rossbar @@ -1762,8 +1775,6 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› - - @sgaist @@ -1819,6 +1830,8 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ‘€ + + @soxofaan @@ -1830,8 +1843,6 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ“– - - @strzonnek @@ -1886,6 +1897,8 @@ Thanks goes to these wonderful people (`emoji key`_):
+ + @tapted @@ -1897,8 +1910,6 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› - - @tgross35 @@ -1956,6 +1967,8 @@ Thanks goes to these wonderful people (`emoji key`_): πŸ› πŸ“– + + @wpnbos @@ -1967,8 +1980,6 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› - - @zachnorton4C @@ -2024,6 +2035,8 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› + + @jsuit @@ -2035,8 +2048,6 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› - - @martinRenou @@ -2093,6 +2104,8 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ‘€ + + @simonf-dev @@ -2104,8 +2117,6 @@ Thanks goes to these wonderful people (`emoji key`_):
πŸ› - - @rogalski diff --git a/contributors.yaml b/contributors.yaml index cc70327fe..cb2c0f28d 100644 --- a/contributors.yaml +++ b/contributors.yaml @@ -17,6 +17,8 @@ DavidCDreher: - {link_type: issues, type: Bug reports} DylanYoung: - {link_type: issues, type: Bug reports} +Eyobkibret15: + - {link_type: search-discussions, type: Bug reports} Hainguyen1210: - {link_type: issues, type: Bug reports} KangOl: From a63b868575d3e4c861c4643b2703d4adcf9a0432 Mon Sep 17 00:00:00 2001 From: Antti Kaihola <13725+akaihola@users.noreply.github.com> Date: Tue, 27 Feb 2024 00:03:33 +0200 Subject: [PATCH 10/10] Add exception class docstring --- release_tools/update_contributors.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release_tools/update_contributors.py b/release_tools/update_contributors.py index 593395698..74d144230 100644 --- a/release_tools/update_contributors.py +++ b/release_tools/update_contributors.py @@ -168,7 +168,7 @@ def verify() -> None: class NotFoundError(Exception): - pass + """Raised when a GitHub API resource is not found""" class GitHubSession(CachedSession):