From f50e7db49aa05fd84cfee4c41d55ef658fcfa431 Mon Sep 17 00:00:00 2001 From: Gyeongjae Choi Date: Wed, 14 Aug 2024 17:54:27 +0900 Subject: [PATCH] Make xbuildenv subcommand public (#15) This makes `pyodide xbuildenv` subcommand public so users can search and install different versions of Pyodide build env. - [x] changelog --------- Co-authored-by: Hood Chatham --- CHANGELOG.md | 3 +++ pyodide_build/cli/xbuildenv.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 43f3b2a..c9c89e5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +- `pyodide xbuildenv` subcommand is now publicly available. + [#15](https://github.com/pyodide/pyodide-build/pull/15) + ## [0.27.3] - 2024/07/17 - It is now possible to override `_f2c_fixes.py` file, with `_f2c_fixes_wrapper` variable. diff --git a/pyodide_build/cli/xbuildenv.py b/pyodide_build/cli/xbuildenv.py index cf7e536..db2a152 100644 --- a/pyodide_build/cli/xbuildenv.py +++ b/pyodide_build/cli/xbuildenv.py @@ -12,7 +12,7 @@ DIRNAME = xbuildenv_dirname() -app = typer.Typer(hidden=True, no_args_is_help=True) +app = typer.Typer(no_args_is_help=True) @app.callback()