Skip to content

Commit f0e304d

Browse files
authored
Fix param name in pyodide auditwheel show command (#52)
* Fix param name * changelog
1 parent c8b8544 commit f0e304d

3 files changed

Lines changed: 51 additions & 67 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## Unreleased
99

10+
### [0.2.2] - 2026/02/02
11+
12+
### Fixed
13+
14+
- Fixed an issue where `auditwheel show` command always fails after 0.2.1 release.
15+
([#52](https://github.com/pyodide/auditwheel-emscripten/pull/52))
16+
1017
### [0.2.1] - 2025/12/16
1118

1219
### Added

auditwheel_emscripten/cli/main.py

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,13 @@ def print_dylib(
4242

4343
@app.command("show")
4444
@click.argument("wheel_or_so_file", type=click.Path(path_type=Path))
45-
@click.option("--with-runtime-paths", "-r", is_flag=True, help="Show runtime paths.")
45+
@click.option(
46+
"--with-runtime-paths",
47+
"-r",
48+
"show_runtime_paths",
49+
is_flag=True,
50+
help="Show runtime paths.",
51+
)
4652
def _show(
4753
wheel_or_so_file: Path,
4854
show_runtime_paths: bool,
@@ -79,7 +85,13 @@ def _show(
7985
default=None,
8086
help="Directory to output repaired wheel or shared library. (default: overwrite the input file)",
8187
)
82-
@click.option("--with-runtime-paths", "-r", is_flag=True, help="Show runtime paths.")
88+
@click.option(
89+
"--with-runtime-paths",
90+
"-r",
91+
"show_runtime_paths",
92+
is_flag=True,
93+
help="Show runtime paths.",
94+
)
8395
def _repair(
8496
wheel_file: Path,
8597
libdir: Path,

uv.lock

Lines changed: 30 additions & 65 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)