We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3886ceb commit 00b5d0cCopy full SHA for 00b5d0c
builder/penv_setup.py
@@ -497,7 +497,7 @@ def _setup_pipenv_minimal(penv_dir):
497
Returns:
498
str or None: Path to uv executable if uv was used, None if python -m venv was used
499
"""
500
- if not os.path.exists(penv_dir):
+ if not os.path.isfile(get_executable_path(penv_dir, "python")):
501
# Attempt virtual environment creation using uv package manager
502
uv_success = False
503
uv_cmd = None
0 commit comments