Skip to content

Commit

Permalink
Replace pip with uv pip
Browse files Browse the repository at this point in the history
  • Loading branch information
jtraglia committed Jan 24, 2025
1 parent 79f814c commit 474ba57
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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

Expand Down

0 comments on commit 474ba57

Please sign in to comment.