Skip to content

Commit

Permalink
Fix venv creation for the local Python using uv
Browse files Browse the repository at this point in the history
  • Loading branch information
hugovk committed Jan 20, 2025
1 parent bfd4b02 commit 7829d33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ venv:
else \
echo "Creating venv in $(VENVDIR)"; \
if $(UV) --version >/dev/null 2>&1; then \
$(UV) venv $(VENVDIR); \
$(UV) venv --python=$(PYTHON) $(VENVDIR); \
VIRTUAL_ENV=$(VENVDIR) $(UV) pip install -r $(REQUIREMENTS); \
else \
$(PYTHON) -m venv $(VENVDIR); \
Expand Down

0 comments on commit 7829d33

Please sign in to comment.