Skip to content

Commit

Permalink
Fix exclusions.
Browse files Browse the repository at this point in the history
  • Loading branch information
bdice committed Aug 29, 2024
1 parent 26e4143 commit 52c5308
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion ci/check_conda_nightly_env.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,9 @@ def check_env(json_path):
old_packages = {
package: date
for package, date in rapids_package_dates.items()
if date is not None and date < old_threshold
if package not in EXCLUDED_PACKAGES
and date is not None
and date < old_threshold
}
if old_packages:
exit_code = 1
Expand Down

0 comments on commit 52c5308

Please sign in to comment.