Skip to content

Commit 998d2b1

Browse files
committed
new/updated libs: ignore Bundle; fix dict key
1 parent f051354 commit 998d2b1

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

adabot/circuitpython_libraries.py

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -186,11 +186,12 @@ def run_library_checks(validators, bundle_submodules, latest_pylint, kw_args):
186186
validator.output_file_data.clear()
187187

188188
# get a list of new & updated libraries for the last week
189-
check_releases = common_funcs.is_new_or_updated(repo)
190-
if check_releases == "new":
191-
new_libs[repo_name] = repo["html_url"]
192-
elif check_releases == "updated":
193-
updated_libs[repo_name] = repo["html_url"]
189+
if repo["name"] != "Adafruit_CircuitPython_Bundle":
190+
check_releases = common_funcs.is_new_or_updated(repo)
191+
if check_releases == "new":
192+
new_libs[repo["name"]] = repo["html_url"]
193+
elif check_releases == "updated":
194+
updated_libs[repo["name"]] = repo["html_url"]
194195

195196
output_handler()
196197
output_handler("State of CircuitPython + Libraries")

0 commit comments

Comments
 (0)