mirror of
https://github.com/php-curl-class/php-curl-class.git
synced 2026-08-19 23:01:44 +00:00
Skip wheel file types
This commit is contained in:
@@ -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)"
|
||||
|
||||
Reference in New Issue
Block a user