We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 69bd823 commit 8b4f8e7Copy full SHA for 8b4f8e7
2 files changed
CHANGES.md
@@ -4,6 +4,7 @@
4
5
- Fix theme for newer Sphinx 7.x.
6
- Add support for Python 3.14.
7
+- Fix interactive uv venv, use --allow-existing instead.
8
9
## 1.3.0 (2025-09-03)
10
Makefile
@@ -275,7 +275,7 @@ ifeq ("$(VENV_ENABLED)", "true")
275
ifeq ("$(VENV_CREATE)", "true")
276
ifeq ("$(PYTHON_PACKAGE_INSTALLER)$(MXENV_UV_GLOBAL)","uvtrue")
277
@echo "Setup Python Virtual Environment using package 'uv' at '$(VENV_FOLDER)'"
278
- @uv venv -p $(PRIMARY_PYTHON) --seed $(VENV_FOLDER)
+ @uv venv -p $(PRIMARY_PYTHON) --seed $(VENV_FOLDER) --allow-existing
279
else
280
@echo "Setup Python Virtual Environment using module 'venv' at '$(VENV_FOLDER)'"
281
@$(PRIMARY_PYTHON) -m venv $(VENV_FOLDER)
0 commit comments