Skip to content

Commit

Permalink
Merge branch 'emscripten' of github.com:hoodmane/cibuildwheel into em…
Browse files Browse the repository at this point in the history
…scripten
  • Loading branch information
hoodmane committed May 13, 2023
2 parents 414c08e + b214605 commit b0a760c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cibuildwheel/pyodide.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ def setup_python(
which_pip = call("which", "pip", env=env, capture_stdout=True).strip()
if which_pip != str(venv_bin_path / "pip"):
print(
"cibuildwheel: pip available on PATH doesn't match our installed instance. If you have modified PATH, ensure that you don't overwrite cibuildwheel's entry or insert pip above it.",
"cibuildwheel: pip available on PATH doesn't match our venv instance. If you have modified PATH, ensure that you don't overwrite cibuildwheel's entry or insert pip above it.",
file=sys.stderr,
)
sys.exit(1)
Expand All @@ -150,7 +150,7 @@ def setup_python(
which_python = call("which", "python", env=env, capture_stdout=True).strip()
if which_python != str(venv_bin_path / "python"):
print(
"cibuildwheel: python available on PATH doesn't match our installed instance. If you have modified PATH, ensure that you don't overwrite cibuildwheel's entry or insert python above it.",
"cibuildwheel: python available on PATH doesn't match our venv instance. If you have modified PATH, ensure that you don't overwrite cibuildwheel's entry or insert python above it.",
file=sys.stderr,
)
sys.exit(1)
Expand Down

0 comments on commit b0a760c

Please sign in to comment.