fix(deps): raise the redis and typing-extensions floors, declare pydantic's - #89
Merged
Merged
Conversation
…ntic's redis >=5.0 resolves to a release without Redis.aclose, which the broker calls on teardown; 5.0.1 added it. typing-extensions 4.12.0 is below what pydantic requires on 3.13+, which drags pydantic back to a build whose pydantic-core has no cp314 wheel. Closes #88
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.
Closes #88.
Three floors
redis.
>=5.0resolves to a release withoutRedis.aclose, which the broker calls on teardown:5.0.1 added it, bisected against the suite. This one was invisible to an install-only check — everything installs, and only the suite shows it.
typing-extensions.
>=4.12.0is below what pydantic requires on 3.13+, so pinning 4.12.0 drags pydantic back to a build whosepydantic-corehas no cp314 wheel. This is the same defect fixed in modern-python/faststream-outbox#185.pydantic. Reaches this package only through
faststream→fast-depends[pydantic], but its floor has to be declared anyway:pydantic-coreships no cp314 wheel before pydantic 2.12.The issue reported only the typing-extensions half. The other two surfaced once it was raised — a resolver stops at the first wall.
Verification
uv pip install --resolution lowest-direct .then the full suite against Redis 8: 170 passed on 3.11 and 3.14. Lint clean. Normal resolution: 170 passed.Nothing changes at the top of the range, so this is inert for anyone not installing at the lower bound.
Found by the org-wide lower-bound audit in modern-python/.github#107.