|
23 | 23 | from adabot.lib import common_funcs
|
24 | 24 | from adabot.lib import blinka_funcs
|
25 | 25 | from adabot.lib import bundle_announcer
|
26 |
| -from adabot import circuitpython_library_download_stats as dl_stats |
27 | 26 |
|
28 | 27 | GH_INTERFACE = pygithub.Github(os.environ.get("ADABOT_GITHUB_ACCESS_TOKEN"))
|
29 | 28 |
|
|
86 | 85 | "Adafruit_Blinka",
|
87 | 86 | "Adafruit_Blinka_bleio",
|
88 | 87 | "Adafruit_Blinka_Displayio",
|
89 |
| - "Adafruit_Python_PlatformDetect", |
90 |
| - "Adafruit_Python_PureIO", |
91 | 88 | "Adafruit_Blinka_PyPortal",
|
| 89 | + "Adafruit_Blinka_Raspberry_Pi5_Piomatter", |
| 90 | + "Adafruit_Blinka_Raspberry_Pi5_Neopixel", |
| 91 | + "Adafruit_Blinka_Raspberry_Pi5_rp1pio", |
92 | 92 | "Adafruit_Python_Extended_Bus",
|
| 93 | + "Adafruit_Python_PlatformDetect", |
| 94 | + "Adafruit_Python_PureIO", |
93 | 95 | ]
|
94 | 96 |
|
95 | 97 |
|
@@ -321,14 +323,7 @@ def run_library_checks(validators, kw_args, error_depth):
|
321 | 323 | print_issue_overview(blinka_insights)
|
322 | 324 | logger.info("* %s open issues", len(blinka_insights["open_issues"]))
|
323 | 325 | logger.info(" * https://github.com/adafruit/Adafruit_Blinka/issues")
|
324 |
| - blinka_dl = ( |
325 |
| - dl_stats.retrieve_piwheels_stats() |
326 |
| - .get("adafruit-blinka", {}) |
327 |
| - .get("month", "N/A") |
328 |
| - ) |
329 |
| - |
330 |
| - logger.info("* Piwheels Downloads in the last month: %s", blinka_dl) |
331 |
| - logger.info("Number of supported boards: %s", blinka_funcs.board_count()) |
| 326 | + logger.info("* Number of supported boards: %s", blinka_funcs.board_count()) |
332 | 327 |
|
333 | 328 |
|
334 | 329 | # pylint: disable=too-many-branches,too-many-statements
|
|
0 commit comments