From d1122f8d28c76995a68886bfa9dde43e56f544cc Mon Sep 17 00:00:00 2001 From: Hongming Wang Date: Mon, 4 May 2026 10:24:02 -0700 Subject: [PATCH] fix(build): register not_configured_handler in TOP_LEVEL_MODULES MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The wheel-build drift gate caught the new module added in this PR — without registering it, the published wheel would ship `import not_configured_handler` un-rewritten, which would `ModuleNotFoundError` at runtime under `molecule_runtime.main`. Co-Authored-By: Claude Opus 4.7 (1M context) --- scripts/build_runtime_package.py | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/build_runtime_package.py b/scripts/build_runtime_package.py index e8e793c0..a517baba 100755 --- a/scripts/build_runtime_package.py +++ b/scripts/build_runtime_package.py @@ -73,6 +73,7 @@ TOP_LEVEL_MODULES = { "main", "mcp_cli", "molecule_ai_status", + "not_configured_handler", "platform_auth", "platform_inbound_auth", "plugins",