From 950a8600f84374a92ef7390f01366e89f60956b6 Mon Sep 17 00:00:00 2001 From: Sterling Dreyer Date: Thu, 19 Dec 2024 11:36:32 -0800 Subject: [PATCH] Remove lock flag from check (#181) --- toolkits/math/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/toolkits/math/Makefile b/toolkits/math/Makefile index 12f56af7..4fb67549 100644 --- a/toolkits/math/Makefile +++ b/toolkits/math/Makefile @@ -45,8 +45,8 @@ bump-version: ## Bump the version in the pyproject.toml file .PHONY: check check: ## Run code quality tools. - @echo "🚀 Checking Poetry lock file consistency with 'pyproject.toml': Running poetry check --lock" - @poetry check --lock + @echo "🚀 Checking Poetry lock file consistency with 'pyproject.toml': Running poetry check" + @poetry check @echo "🚀 Linting code: Running pre-commit" @poetry run pre-commit run -a @echo "🚀 Static type checking: Running mypy"