From 474ba57c7c0ef31fbc39bf4c2c3a3b8e09a50be9 Mon Sep 17 00:00:00 2001 From: Justin Traglia Date: Fri, 24 Jan 2025 13:00:22 -0600 Subject: [PATCH] Replace pip with uv pip --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 12880965a2..dc9406d9f6 100644 --- a/Makefile +++ b/Makefile @@ -62,6 +62,7 @@ CODESPELL_VENV = $(VENV)/bin/codespell $(VENV): @echo "Creating virtual environment" @python3 -m venv $(VENV) + @$(PIP_VENV) install --quiet uv==0.5.24 ############################################################################### # Specification @@ -73,7 +74,7 @@ PYSPEC_DIR = $(TEST_LIBS_DIR)/pyspec # Create the pyspec for all phases. pyspec: $(VENV) setup.py pyproject.toml @echo "Building eth2spec" - @$(PIP_VENV) install --quiet --upgrade .[docs,lint,test,generator] + @$(PYTHON_VENV) -m uv pip install .[docs,lint,test,generator] @echo "Building all pyspecs" @$(PYTHON_VENV) setup.py pyspecdev