-
Notifications
You must be signed in to change notification settings - Fork 132
Auto-generate description labels and extend DEPENDENCIES schema #1133
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
+1,730
−498
Merged
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
81d561d
Auto-generate description labels and extend DEPENDENCIES schema
sbryngelson 3799728
Fix type annotations for requires_value and when_value support
sbryngelson 3569138
Export schema symbols and auto-generate validation hints
sbryngelson 7b8d1e4
Fix docs display and add missing DEPENDENCIES entries
sbryngelson 23f17be
Add Constraints column to full table view and new range constraints
sbryngelson b235149
AST-extract constraints from case_validator.py for parameters.md
sbryngelson bd2502f
Add alias propagation, if-guard enrichment, and tag-based annotations
sbryngelson e438581
Add validation constraints and extend doc annotation fallbacks
sbryngelson a80bb8a
Add attribute-based annotations for BC, fluid_pp, and simplex families
sbryngelson 13010c8
Refactor doc annotations to be data-driven from definitions.py
sbryngelson 04c99c8
Fix value_labels rendering, substring matching, and misleading comment
sbryngelson da248d3
Fix CI failures and harden review fixes, add Python compat workflow
sbryngelson File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,25 @@ | ||
| name: Toolchain Compatibility | ||
|
|
||
| on: | ||
| push: | ||
| branches: [master] | ||
| pull_request: | ||
| workflow_dispatch: | ||
|
|
||
| jobs: | ||
| test-toolchain: | ||
| name: "Python ${{ matrix.python-version }}" | ||
| runs-on: ubuntu-latest | ||
| strategy: | ||
| fail-fast: false | ||
| matrix: | ||
| python-version: ['3.10', '3.11', '3.12', '3.13', '3.14'] | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| - uses: actions/setup-python@v5 | ||
| with: | ||
| python-version: ${{ matrix.python-version }} | ||
| - name: Initialize MFC | ||
| run: ./mfc.sh init | ||
| - name: Lint and test toolchain | ||
| run: ./mfc.sh lint | ||
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Suggestion: Remove the unreleased Python version
3.14from the CI matrix to prevent workflow failures. [possible issue, importance: 6]There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Python 3.14 is available in
actions/setup-pythonand passes in CI — all 5 matrix versions (3.10–3.14) are green. No change needed.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Question:
Python 3.14 is available in
actions/setup-pythonand passes in CI — all 5 matrix versions (3.10–3.14) are green. No change needed.Answer:
This is a “speculative CI hygiene” suggestion (it assumed 3.14 is unreleased / unsupported), and you can reduce this kind of noise by tightening
/improveguidance and/or filtering mid-score suggestions.Recommended config (reduce speculative CI-matrix/version suggestions unless there’s evidence of failure):
Optional: filter out this class of mid-importance suggestions (the example was importance 6):
(This will drop suggestions scored below 7; use carefully since it can also hide other useful items.)
If you prefer to exclude CI/workflow files from suggestions altogether:
or globally:
If you share which tool produced the comment (
/improvevs/review) and your git provider (GitHub/GitLab/etc.), I can tailor the exact config snippet to the right section.Relevant Sources: