Skip wheel file types

This commit is contained in:
Zach Borboa
2026-03-19 16:46:00 -04:00
parent 7d7da945fa
commit 65cf205cc9
+3 -2
View File
@@ -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)"