Conversation
- step_build_win_sandbox: 从本地编译改为下载 win-sandbox wheel(GitHub Releases), 同时下载 nanobind-backend wheel(PyPI,split mode 运行期必需后端) - 新增 _win_sandbox_platform(): 按 platform.machine() 映射 wheel 平台标签 - 新增 _pypi_wheel_url(): 从 PyPI JSON API 获取匹配架构/Python 版本的 wheel URL - 新增 stage_clean_windows_sandbox_archives(): 清理旧产物 - 架构映射: AMD64→win_amd64, ARM64→win_arm64, x86→win32 (nanobind-backend 无 win32 wheel,x86 仅下载 win_sandbox 本身) - 相关文档注释同步更新
…se download - step_build_fastscreen: replace cmake + VS compilation with platform-arch download from github.com/ming-14/fastscreen/releases - add _fastscreen_asset_name() helper (pointer-width + machine arch) - update docs/CLI.md: build step 3 description, env var references
- 移除本地编译(step_build_wezterm_py → step_download_wezterm_py) - 新增 _pywezterm_platform() 映射当前平台到 wheel 平台标签 - 从 ming-14/pywezterm 最新 release 下载对应架构 wheel,解包到 bin/pywezterm - 清理死代码:_find_cargo、_ensure_maturin、find_vcvars、write_cmd_wrapper - 告警函数重命名 _warn_pywezterm_missing
- _download_to_temp: .whl 按 zip 容器命名解压(此前被当作 .tar.gz 报 not a gzip file) - pywezterm: 从 release 资产列表匹配 wheel(tag v1.0 但 wheel 版本 0.1.0, 不能按 tag 拼文件名,此前 404) - 新增 _release_asset_name: 查询 release 资产匹配后缀 - CI: 移除 Rust/cargo/maturin(wezterm-py 已改为下载),Linux 依赖精简
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
改动概览
BUILD.py(本地编译 → 下载)
bug 修复
CI
验证