-
Notifications
You must be signed in to change notification settings - Fork 737
feat: Add automated dependency version tracking and extraction #3547
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
Open
dagil-nvidia
wants to merge
30
commits into
main
Choose a base branch
from
feature/dependency-extraction-DYN-1235
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit
Hold shift + click to select a range
f427a8b
feat: Add automated dependency version tracking and extraction
7ea0b89
Add SPDX copyright header to extraction script
62b6e1f
Fix pre-commit issues: import order and EOF
b283998
Remove unintended files and update .gitignore
692b308
Fix pre-commit issues: executable permission and unused variables
318f45c
Fix remaining unused variables: service and critical_reason
51af209
Make baseline dependency count dynamic based on previous extraction
749d8e2
Add removed dependencies tracking and PR reporting
dagil-nvidia cc3c88f
Fix YAML syntax error in nightly workflow
dagil-nvidia d520194
Fix all pre-commit issues: YAML syntax and formatting
dagil-nvidia 9ac63de
Fix shell script extraction to skip runtime-determined versions
dagil-nvidia c0722d0
feat: Enhance dependency extraction to capture pip installs and binarβ¦
dagil-nvidia 3b0e8ab
fix: Remove trailing whitespace from extraction script
dagil-nvidia bd37921
fix: address CodeRabbit and reviewer feedback
dagil-nvidia e4619f1
Address nv-tusharma's review comments
dagil-nvidia f5a8770
feat(deps): add version discrepancy detection and composite action
dagil-nvidia 3b5a644
fix: apply black and ruff formatting fixes
dagil-nvidia 5ff3749
fix(deps): improve discrepancy detection accuracy
dagil-nvidia f547bae
fix(deps): skip sub-dependency ARGs, normalize pinning, and document β¦
dagil-nvidia a1860f0
fix: apply isort and black formatting
dagil-nvidia 3972458
feat(deps): add automated failure monitoring for dependency extractioβ¦
dagil-nvidia a86a3f5
fix: address pre-commit trailing whitespace issues
dagil-nvidia e91ff3e
refactor(deps): address nv-anants review feedback
dagil-nvidia acc4450
docs(deps): add comprehensive documentation for dependency extraction
dagil-nvidia b98d2cf
chore: trigger DCO re-check
dagil-nvidia f041e40
refactor(deps): modularize dependency extraction system
dagil-nvidia 32456dc
feat(deps): add extractor architecture and unit tests
dagil-nvidia 512c347
Merge branch 'main' into feature/dependency-extraction-DYN-1235
dagil-nvidia c163fa4
fix: apply pre-commit formatting fixes and update test markers
dagil-nvidia d20b575
feat(deps): add dynamic FRAMEWORK_VERSIONS.md generator
dagil-nvidia 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
Add SPDX copyright header to extraction script
Signed-off-by: Dan Gil <[email protected]>
- Loading branch information
commit 7ea0b892a6375ff7a89e6ac3807badc2802f5a1a
Some comments aren't visible on the classic Files Changed page.
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
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.
Shebang requires executable bit or remove it
Pre-commit flagged: has a shebang but not executable. Either chmod +x this file in git or drop the shebang (workflows call it via python3).
Suggested options:
π§° Tools
πͺ GitHub Actions: Pre Merge Validation of (ai-dynamo/dynamo/refs/pull/3547/merge) by dagil-nvidia.
[error] 1-1: isort: Files were modified by this hook. (pre-commit)
[error] 1-1: Black: 1 file reformatted. (pre-commit)
[error] 1-1: check-shebang-scripts-are-executable: has a shebang but is not marked executable.
πͺ Ruff (0.13.3)
1-1: Shebang is present but file is not executable
(EXE001)
π€ Prompt for AI Agents