Skip to content

Commit 62b57e6

Browse files
committed
Add log step
1 parent 985fc46 commit 62b57e6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

cibuildwheel/platforms/pyodide.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -234,10 +234,11 @@ def setup_python(
234234
environment: ParsedEnvironment,
235235
user_pyodide_version: str | None,
236236
) -> dict[str, str]:
237+
log.step("Installing a base python environment...")
237238
base_python = get_base_python(tmp / "base", python_configuration)
238-
pyodide_version = user_pyodide_version or python_configuration.default_pyodide_version
239239

240240
log.step("Setting up build environment...")
241+
pyodide_version = user_pyodide_version or python_configuration.default_pyodide_version
241242
venv_path = tmp / "venv"
242243
env = virtualenv(python_configuration.version, base_python, venv_path, None, use_uv=False)
243244
venv_bin_path = venv_path / "bin"

0 commit comments

Comments
 (0)