We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 202344e commit e612988Copy full SHA for e612988
build-project.py
@@ -36,6 +36,9 @@ def get_git_head_timestamp() -> str:
36
def main() -> None:
37
with tempfile.TemporaryDirectory() as build_env:
38
env_builder = EnvBuilder(with_pip=True)
39
+ # If this venv creation step fails, you may be hitting
40
+ # https://github.com/astral-sh/python-build-standalone/issues/381
41
+ # Try running with a another Python distribution.
42
env_builder.create(build_env)
43
subprocess.run(
44
[
0 commit comments