chore(deps): relock requirements, supersede #50#52
Merged
Conversation
- hf-hub 1.21.0->1.22.0 drops the typer<0.26 cap, unblocking typer 0.26.8 (dependabot #50 pinned typer 0.26.8 against hf-hub 1.21.0 -> ResolutionImpossible) - also picks up filelock, typing-extensions, coverage (dev) - #50's importlib-metadata/jiter/rich bumps left out: capped by litellm 1.90.2 (<9.0) and instructor 1.15.4 (jiter<0.15, rich<15.0)
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.
What
Relock
requirements.txt/requirements-dev.txtoffmain. Supersedes #50.Why
Dependabot #50 fails CI at the Install dependencies step (not ruff/mypy):
huggingface-hub 1.22.0drops thetyper<0.26.0cap (typer moved to an optionalextra upstream), so a fresh
pip-compile --upgraderesolves typer 0.26.8 andhf-hub 1.22.0 together.
What's in
typer 0.25.1→0.26.8,huggingface-hub 1.21.0→1.22.0,filelock 3.29.4→3.29.5,typing-extensions 4.15.0→4.16.0, and (dev)coverage 7.14.3→7.15.0.What's deliberately left out
#50 was inconsistent on all four of its bumps, not just typer. These three stay
at current because the latest allowed
litellm/instructorstill cap them:<9.0)<0.15)<15.0)Verification
Locally with the new hash-locked deps installed on Python 3.11:
pip install --require-hashes -r requirements-dev.txt— succeeds (the exact CI failure)ruff check .— passedruff format --check .— cleanmypy app/ --ignore-missing-imports— no issues, 68 filespytest --tb=short— 1588 passed, coverage 93.64% (≥85% gate)