mirror of
https://github.com/python/cpython.git
synced 2026-01-06 15:32:22 +00:00
[3.13] doc: fix venv creating for the local Python using uv (GH-129094) (#129096)
Co-authored-by: Filipe Laíns 🇵🇸 <lains@riseup.net>
This commit is contained in:
parent
03b2ecf41c
commit
2077082463
1 changed files with 1 additions and 1 deletions
|
|
@ -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); \
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue