From 65cf205cc99c4490290c349dfb50aa52ce4875ca Mon Sep 17 00:00:00 2001 From: Zach Borboa Date: Thu, 19 Mar 2026 16:46:00 -0400 Subject: [PATCH] Skip wheel file types --- .github/workflows/outdated-track.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/outdated-track.yml b/.github/workflows/outdated-track.yml index 0f59235..12867c5 100644 --- a/.github/workflows/outdated-track.yml +++ b/.github/workflows/outdated-track.yml @@ -23,8 +23,9 @@ jobs: pip install --requirement scripts/make_release_requirements.txt outdated="$(pip list --outdated --format json | jq)" outdated_count="$(echo "$outdated" | jq 'length')" - echo "${outdated}" | - jq "[{\"outdated_count\":\"${outdated_count}\"}] + ." | + outdated="$(echo "${outdated}" | jq "[{\"outdated_count\":\"${outdated_count}\"}] + .")" + outdated="$(echo "${outdated}" | jq 'map(if .latest_filetype == "wheel" then del(.latest_filetype) else . end)')" + echo -e "${outdated}" | npx --yes prettier --parser jsonc --trailing-comma all > scripts/make_release_requirements.json git diff --color changes="$(git diff)"