Skip to content

Commit

Permalink
Add Pyodide version to temp directory name
Browse files Browse the repository at this point in the history
  • Loading branch information
agriyakhetarpal committed Sep 24, 2024
1 parent 4fe86e0 commit b6830ee
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cibuildwheel/pyodide.py
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,8 @@ def build(options: Options, tmp_path: Path) -> None:

log.build_start(config.identifier)

identifier_tmp_dir = tmp_path / config.identifier
# Include both the identifier and the Pyodide version in the temp directory name
identifier_tmp_dir = tmp_path / f"{config.identifier}_{config.pyodide_version}"
built_wheel_dir = identifier_tmp_dir / "built_wheel"
repaired_wheel_dir = identifier_tmp_dir / "repaired_wheel"
identifier_tmp_dir.mkdir()
Expand Down

0 comments on commit b6830ee

Please sign in to comment.