Skip to content

Commit

Permalink
Update cibuildwheel/macos.py
Browse files Browse the repository at this point in the history
Co-authored-by: Matthieu Darbois <mayeut@users.noreply.github.com>
  • Loading branch information
henryiii and mayeut authored Jun 7, 2024
1 parent 4195fad commit f528ddb
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions cibuildwheel/macos.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,9 +150,7 @@ def install_cpython(tmp: Path, version: str, url: str, free_threading: bool) ->

if free_threading:
call(installation_path / f"bin/python{version}t", "-m", "ensurepip", env=env)
call(installation_path / f"bin/python{version}t", install_certifi_script, env=env)
else:
call(installation_path / "bin/python3", install_certifi_script, env=env)
call(installation_path / "bin/python3", install_certifi_script, env=env)

return installation_path / "bin" / (f"python{version}t" if free_threading else "python3")

Expand Down

0 comments on commit f528ddb

Please sign in to comment.