From 94632fa21e01819de78bf0c931eb3cbdd1d426b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89tienne=20BERSAC?= Date: Tue, 12 Sep 2023 09:35:20 +0200 Subject: [PATCH] chore: Use pip3 explicitly to install yamllint MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Distribution stends to skip unversionned pip for compatibility issues. Also, yamllint requires Python 3.8+. Signed-off-by: Étienne BERSAC --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index bbd8aa8..a77b9c8 100644 --- a/Makefile +++ b/Makefile @@ -68,7 +68,7 @@ bin/golangci-lint: .PHONY: yamllint yamllint: - pip install --user yamllint + pip3 install --user yamllint # Add custom targets here -include custom.mk