Skip to content

Commit

Permalink
doc: fix venv creating for the local Python using uv (pythonGH-129094)
Browse files Browse the repository at this point in the history
(cherry picked from commit da36bcc)

Co-authored-by: Filipe Laíns 🇵🇸 <lains@riseup.net>
  • Loading branch information
FFY00 authored and miss-islington committed Jan 20, 2025
1 parent 03b2ecf commit 79fe9d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Doc/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,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 79fe9d3

Please sign in to comment.