Fix: migrate excluded simpler.* imports to simpler_setup and update docs#546
Merged
ChaoWao merged 1 commit intoApr 14, 2026
Conversation
|
Warning You have reached your daily quota limit. Please wait up to 24 hours and I will start processing your requests again! |
abcc5d4 to
a6b6129
Compare
2dbd1d1 to
b14fff9
Compare
68ce7dc to
af136cc
Compare
The 4 build-time modules (runtime_compiler, kernel_compiler, elf_parser, toolchain) are excluded from the simpler wheel — simpler_setup is the authoritative source. Migrate all imports to simpler_setup. Update testing.md: fix stale scene test example to current CALLABLE/TaskArgsBuilder API and add migration guide section. Fix self-hosted CI jobs to use per-run venv with pip upgrade, preventing package conflicts on shared runners and old pip failures. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
af136cc to
4af994d
Compare
ChaoWao
approved these changes
Apr 14, 2026
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.
Summary
from simpler.{runtime_compiler,kernel_compiler,elf_parser}imports tosimpler_setup.*in post-install code (ci.py, tests/ut, tests/lint) — these 4 modules are excluded from the simpler wheelruntime_builder.py,code_runner.py) keepsimpler.*imports since they run duringpip install .beforesimpler_setupis availablepip install --upgrade pip, preventing package conflicts on shared runners and pip 21.x/Python 3.9 build failuresdocs/testing.md: fix stale scene test example to currentCALLABLE/TaskArgsBuilder/CASESAPI and add migration guide sectiondocs/getting-started.mdimport table to clarifysimpler.kernel_compileris transitionalFiles changed
Import migration (simpler → simpler_setup, post-install only):
ci.pytests/ut/py/test_runtime_builder.pytests/lint/clang_tidy.pyCI venv isolation:
.github/workflows/ci.yml— all 4 self-hosted jobsDocs:
docs/testing.md— scene test example + migration guidedocs/getting-started.md— import table clarificationTesting