From 5219f2170517652d6cb8843f98070a4afd29d7df Mon Sep 17 00:00:00 2001 From: Valter Silva Date: Tue, 7 Feb 2023 15:05:56 +0800 Subject: [PATCH] fix: remove python target dependencies --- lib/make/pre-commit/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/make/pre-commit/Makefile b/lib/make/pre-commit/Makefile index 29280e6..b8daeb5 100644 --- a/lib/make/pre-commit/Makefile +++ b/lib/make/pre-commit/Makefile @@ -1,11 +1,11 @@ .PHONY: pre-commit/install ## Install pre-commit using Pip3 -pre-commit/install: python/pip/install +pre-commit/install: @pip3 install --progress-bar off --upgrade --user pre-commit .PHONY: pre-commit/hooks/install ## Install pre-commit hooks -pre-commit/hooks/install: python/pip/install pre-commit/install +pre-commit/hooks/install: pre-commit/install @pre-commit install .PHONY: pre-commit/update