File tree Expand file tree Collapse file tree 2 files changed +2
-5
lines changed
Expand file tree Collapse file tree 2 files changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -97,9 +97,7 @@ def list_command(args: argparse.Namespace):
9797##############################################################################
9898
9999
100- def create_config (
101- prompt : bool , preseeds : dict [str , typing .Any ] | None
102- ):
100+ def create_config (prompt : bool , preseeds : dict [str , typing .Any ] | None ):
103101 if prompt and preseeds :
104102 sys .stdout .write ("Either use prompt or preseeds, not both\n " )
105103 sys .exit (1 )
Original file line number Diff line number Diff line change @@ -188,9 +188,8 @@ endif
188188 # Create virtual environment
189189ifeq ("$(VENV_ENABLED ) ", "true")
190190ifeq ("$(VENV_CREATE ) ", "true")
191- ifeq ("$(USE_GLOBAL_UV ) ","true")
192191 @echo "Setup Python Virtual Environment using global uv at '$(VENV_FOLDER)'"
193- @uv venv --quiet --no-progress -p $(UV_PYTHON) --seed $(VENV_FOLDER)
192+ @uv venv --allow-existing --no-progress --python $(UV_PYTHON) --seed $(VENV_FOLDER)
194193else
195194 @echo "Setup Python Virtual Environment using module 'venv' at '$(VENV_FOLDER)'"
196195 @$(PRIMARY_PYTHON) -m venv $(VENV_FOLDER)
You can’t perform that action at this time.
0 commit comments