Skip to content

Commit

Permalink
Fix outdated package check by using top-level dependencies directly f…
Browse files Browse the repository at this point in the history
…rom pyproject.toml
  • Loading branch information
wummel committed Nov 9, 2024
1 parent c1ca665 commit 2561095
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ checkoutdatedpy: ## Check for outdated package requirements
@set +e; \
echo "Check for outdated Python packages"; \
uv pip list --format=freeze |sed 's/==.*//' | uv pip compile - --color=never --quiet --no-deps --no-header --no-annotate |diff <(uv pip list --format=freeze) - --side-by-side --suppress-common-lines | \
grep -iE "($(shell uv pip tree -d0 | cut -f1 -d" " | sort | paste -sd '|' | sed -e 's/|/|\t/g'))"; \
grep -iE "($(shell grep == pyproject.toml | cut -f1 -d= | tr -d "\"\' "| sed -e 's/\[.*\]//' |sort | paste -sd '|'))"; \
test $$? = 1

checkoutdatedgh: ## check for outedated github tools
Expand Down

0 comments on commit 2561095

Please sign in to comment.