Skip to content

Commit

Permalink
infra: fix min version (#26461)
Browse files Browse the repository at this point in the history
  • Loading branch information
baskaryan committed Sep 13, 2024
1 parent 44791ce commit 3125a89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/scripts/get_min_versions.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def get_min_version_from_toml(
min_versions = {}

# Iterate over the libs in MIN_VERSION_LIBS
for lib in MIN_VERSION_LIBS:
for lib in set(MIN_VERSION_LIBS + (include or [])):
if versions_for == "pull_request" and lib in SKIP_IF_PULL_REQUEST:
# some libs only get checked on release because of simultaneous
# changes
Expand Down

0 comments on commit 3125a89

Please sign in to comment.