chore(deps): unpin inputs where possible#19993
Open
miketheman wants to merge 1 commit intopypi:mainfrom
Open
Conversation
Dependabot will run `pip-compile` for updates, and when it does, it bumps the values in the .in files as well as the rendered .txt files. Touching the .in files impacts local developers needlessly running the same `pip-compile` steps that have already been done via CI, slowing them down when nothing has effectively changed. This should minimize the amount of locally-run pip-compile. Signed-off-by: Mike Fiedler <miketheman@gmail.com>
dstufft
reviewed
May 1, 2026
Member
There was a problem hiding this comment.
There's a couple more of these that I found in the uv poc:
sqlalchemy[asyncio]>=2.0,<3.0webauthn>=1.0.0,<3.0.0pytest-postgresql>=3.1.3,<9.0.0pypi-attestations==0.0.29kombu[redis]>=5.6,<5.7
All of those are ones where we're on the latest version and the upper bounds is not excluding anything today (so it's not adding any value at the moment), and most of them are ones where we've had dependabot bumping the upper bounds whenever a new release came out that was excluded by the pin.
That leaves only redis>=2.8.0,<7.0.0, which we are legitimately excluding versions using that pin.
Thanks for picking this up though!
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.
Dependabot will run
pip-compilefor updates, and when it does, it bumps the values in the .in files as well as the rendered .txt files.Touching the .in files impacts local developers needlessly running the same
pip-compilesteps that have already been done via CI, slowing them down when nothing has effectively changed.This should minimize the amount of locally-run pip-compile.