Skip to content

Commit

Permalink
remove piwheels download stats from report
Browse files Browse the repository at this point in the history
  • Loading branch information
jepler committed Feb 18, 2025
1 parent c951171 commit f1900ab
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions adabot/circuitpython_libraries.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
from adabot.lib import common_funcs
from adabot.lib import blinka_funcs
from adabot.lib import bundle_announcer
from adabot import circuitpython_library_download_stats as dl_stats

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

Expand Down Expand Up @@ -324,14 +323,7 @@ def run_library_checks(validators, kw_args, error_depth):
print_issue_overview(blinka_insights)
logger.info("* %s open issues", len(blinka_insights["open_issues"]))
logger.info(" * https://github.com/adafruit/Adafruit_Blinka/issues")
blinka_dl = (
dl_stats.retrieve_piwheels_stats()
.get("adafruit-blinka", {})
.get("month", "N/A")
)

logger.info("* Piwheels Downloads in the last month: %s", blinka_dl)
logger.info("Number of supported boards: %s", blinka_funcs.board_count())
logger.info("* Number of supported boards: %s", blinka_funcs.board_count())


# pylint: disable=too-many-branches,too-many-statements
Expand Down

0 comments on commit f1900ab

Please sign in to comment.