Skip to content

Commit f1900ab

Browse files
committed
remove piwheels download stats from report
1 parent c951171 commit f1900ab

File tree

1 file changed

+1
-9
lines changed

1 file changed

+1
-9
lines changed

adabot/circuitpython_libraries.py

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
from adabot.lib import common_funcs
2424
from adabot.lib import blinka_funcs
2525
from adabot.lib import bundle_announcer
26-
from adabot import circuitpython_library_download_stats as dl_stats
2726

2827
GH_INTERFACE = pygithub.Github(os.environ.get("ADABOT_GITHUB_ACCESS_TOKEN"))
2928

@@ -324,14 +323,7 @@ def run_library_checks(validators, kw_args, error_depth):
324323
print_issue_overview(blinka_insights)
325324
logger.info("* %s open issues", len(blinka_insights["open_issues"]))
326325
logger.info(" * https://github.com/adafruit/Adafruit_Blinka/issues")
327-
blinka_dl = (
328-
dl_stats.retrieve_piwheels_stats()
329-
.get("adafruit-blinka", {})
330-
.get("month", "N/A")
331-
)
332-
333-
logger.info("* Piwheels Downloads in the last month: %s", blinka_dl)
334-
logger.info("Number of supported boards: %s", blinka_funcs.board_count())
326+
logger.info("* Number of supported boards: %s", blinka_funcs.board_count())
335327

336328

337329
# pylint: disable=too-many-branches,too-many-statements

0 commit comments

Comments
 (0)