Skip to content

Commit 7829d33

Browse files
committed
Fix venv creation for the local Python using uv
1 parent bfd4b02 commit 7829d33

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ venv:
6666
else \
6767
echo "Creating venv in $(VENVDIR)"; \
6868
if $(UV) --version >/dev/null 2>&1; then \
69-
$(UV) venv $(VENVDIR); \
69+
$(UV) venv --python=$(PYTHON) $(VENVDIR); \
7070
VIRTUAL_ENV=$(VENVDIR) $(UV) pip install -r $(REQUIREMENTS); \
7171
else \
7272
$(PYTHON) -m venv $(VENVDIR); \

0 commit comments

Comments
 (0)