Skip to content

Commit

Permalink
Fix warning for day-old packages.
Browse files Browse the repository at this point in the history
  • Loading branch information
bdice committed Aug 29, 2024
1 parent 52c5308 commit 171644a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ci/check_conda_nightly_env.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ def check_env(json_path):
)
for package, date in sorted(rapids_package_dates.items()):
date_string = date.strftime("%Y-%m-%d")
status = WARNING if date < today - timedelta(days=1) else OKGREEN
status = WARNING if date < today else OKGREEN
print(f"{status} - {package}: {date_string}{ENDC}")

return exit_code
Expand Down

0 comments on commit 171644a

Please sign in to comment.