Skip to content

Commit 8b4f8e7

Browse files
committed
no interaction' uv venv with allow existing
1 parent 69bd823 commit 8b4f8e7

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
- Fix theme for newer Sphinx 7.x.
66
- Add support for Python 3.14.
7+
- Fix interactive uv venv, use --allow-existing instead.
78

89
## 1.3.0 (2025-09-03)
910

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ ifeq ("$(VENV_ENABLED)", "true")
275275
ifeq ("$(VENV_CREATE)", "true")
276276
ifeq ("$(PYTHON_PACKAGE_INSTALLER)$(MXENV_UV_GLOBAL)","uvtrue")
277277
@echo "Setup Python Virtual Environment using package 'uv' at '$(VENV_FOLDER)'"
278-
@uv venv -p $(PRIMARY_PYTHON) --seed $(VENV_FOLDER)
278+
@uv venv -p $(PRIMARY_PYTHON) --seed $(VENV_FOLDER) --allow-existing
279279
else
280280
@echo "Setup Python Virtual Environment using module 'venv' at '$(VENV_FOLDER)'"
281281
@$(PRIMARY_PYTHON) -m venv $(VENV_FOLDER)

0 commit comments

Comments
 (0)