Reconcile uv.lock with pyproject: sn-trackeval, not trackeval - #24
Open
AtomScott wants to merge 1 commit into
Open
Reconcile uv.lock with pyproject: sn-trackeval, not trackeval#24AtomScott wants to merge 1 commit into
AtomScott wants to merge 1 commit into
Conversation
#22 merged before #21, so its regenerated lockfile predates #21's repin. main was left inconsistent: pyproject asks for sn-trackeval>=0.4.0 while uv.lock still pinned trackeval 1.3.0 -- the unrelated PyPI project with no SoccerNetGS dataset. That is a silent trap rather than a build error. `uv sync` would install the scorer-less package, `from trackeval.datasets import SoccerNetGS` would fail, and GS-HOTA would be unrunnable again for exactly the reason #21 fixed. Regenerated with `uv lock`: removes trackeval 1.3.0, adds sn-trackeval 0.4.0 (plus its scikit-image / tifffile dependencies). Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
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.
#22 merged before #21, so its regenerated lockfile predates #21's dependency repin.
mainis currently inconsistent:This is a silent trap, not a build error.
uv syncinstalls the scorer-lesstrackeval,from trackeval.datasets import SoccerNetGSthen fails, and GS-HOTA becomes unrunnable again — the exact failure #21 existed to fix. Nothing warns you; it just stops working.Regenerated with
uv lock: removestrackeval 1.3.0, addssn-trackeval 0.4.0and itsscikit-image/tifffiledependencies. Lockfile-only change, 1 file.Verified
from trackeval.datasets import SoccerNetGSimports.🤖 Generated with Claude Code