From 3bfe2be65dc4fc0c7bda470590ede47d90103ebc Mon Sep 17 00:00:00 2001 From: Sylvain <35365065+sanderegg@users.noreply.github.com> Date: Tue, 15 Oct 2024 10:51:43 +0200 Subject: [PATCH] =?UTF-8?q?=E2=99=BB=EF=B8=8FMaintenance:=20adjustments=20?= =?UTF-8?q?to=20Makefile=20to=20use=20UV=20instead=20of=20pyenv=20(#6532)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 73a2e83df10..038d7b70b1d 100644 --- a/Makefile +++ b/Makefile @@ -128,7 +128,8 @@ help: ## help on rule's targets test_python_version: ## Check Python version, throw error if compilation would fail with the installed version - @uv run ./scripts/test_python_version.py + # Checking python version + @.venv/bin/python ./scripts/test_python_version.py ## DOCKER BUILD ------------------------------- @@ -482,7 +483,7 @@ push-version: tag-version .venv: .check-uv-installed @uv venv $@ - ## upgrading tools to latest version in $(shell python3 --version) + @echo "# upgrading tools to latest version in" && $@/bin/python --version @uv pip --quiet install --upgrade \ pip~=24.0 \ wheel \