Skip to content

Commit 06add76

Browse files
committed
Try again
1 parent 28286a7 commit 06add76

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cibuildwheel/pyodide.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ def install_emscripten(tmp: Path, version: str) -> Path:
6464
def install_xbuildenv(env: dict[str, str], pyodide_version: str) -> str:
6565
xbuildenv_cache_dir = CIBW_CACHE_PATH
6666
pyodide_root = (
67-
xbuildenv_cache_dir / ".pyodide-xbuildenv-0.26.0.dev0/0.26.0a4/xbuildenv/pyodide-root"
67+
xbuildenv_cache_dir / f".pyodide-xbuildenv-0.26.0.dev0/{pyodide_version}/xbuildenv/pyodide-root"
6868
)
6969
if pyodide_root.exists():
7070
return str(pyodide_root)
@@ -78,7 +78,7 @@ def install_xbuildenv(env: dict[str, str], pyodide_version: str) -> str:
7878
"pyodide",
7979
"xbuildenv",
8080
"install",
81-
"0.26.0a4",
81+
pyodide_version,
8282
env=env,
8383
cwd=xbuildenv_cache_dir,
8484
)

0 commit comments

Comments
 (0)