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 3ea5eb0 commit 3886cebCopy full SHA for 3886ceb
builder/penv_setup.py
@@ -89,7 +89,7 @@ def setup_pipenv_in_package(env, penv_dir):
89
Returns:
90
str or None: Path to uv executable if uv was used, None if python -m venv was used
91
"""
92
- if not os.path.exists(penv_dir):
+ if not os.path.isfile(get_executable_path(penv_dir, "python")):
93
# Attempt virtual environment creation using uv package manager
94
uv_success = False
95
uv_cmd = None
0 commit comments