Merged
Conversation
Add a workflow (.github/workflows/lockfile-check.yml) that validates uv.lock is current on pull requests and pushes to main. It triggers when pyproject.toml, uv.lock, or the workflow file change, sets up Python using pyproject.toml, installs uv v0.10.9 via astral-sh/setup-uv, and runs uv lock --check.
deruyter92
approved these changes
Mar 19, 2026
Collaborator
deruyter92
left a comment
There was a problem hiding this comment.
Looks good to me!
BTW, FMPose3d v0.0.8 was released today, so I've updated the uv.lock file and pyproject.toml.
deruyter92
approved these changes
Mar 19, 2026
MMathisLab
approved these changes
Mar 19, 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.
This pull request updates the uv lockfile and introduces a new workflow to automatically check that the
uv.lockfile is up-to-date whenever relevant files are changed or when changes are pushed to the main branch.Dependency management:
uv.lockbased on latestmain.Commented out thefmpose3dextra inpyproject.tomlwith a TODO note to restore it after the next release, clarifying the temporary exclusion and its rationale.fmpose3d >= 0.0.8now.Dependency and workflow automation:
.github/workflows/lockfile-check.ymlto verify thatuv.lockis current whenpyproject.toml,uv.lock, or related workflow files change, or on pushes tomain. This helps prevent dependency drift and ensures reproducible builds.