We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f642043 commit f636c45Copy full SHA for f636c45
src/package_report.py
@@ -70,8 +70,8 @@ def _generate_staleness_report_per_image(
70
staleness_report_rows = []
71
72
# Get conda download statistics for all installed packages
73
- # Use previous month to get full month of data
74
- previous_month = (datetime.now() - relativedelta(months=1)).strftime("%Y-%m")
+ # Use the month before last to get full month of data
+ previous_month = (datetime.now() - relativedelta(months=2)).strftime("%Y-%m")
75
pkg_list = list(package_versions_in_upstream.keys())
76
# Suppress FutureWarning from pandas so it doesn't show in report
77
with warnings.catch_warnings():
0 commit comments