Bump boto3 lower bound to >=1.41.2 to match botocore floor#726
Merged
Conversation
boto3 1.38.2 declares botocore<1.39.0,>=1.38.2, which is incompatible with the existing botocore>=1.41.2 floor (raised in #708 for DpuCount). The boto3>=1.38.2 specifier was therefore never actually satisfiable together with the botocore floor; pip already resolves boto3 up to >=1.41.2 in practice. Align the declared boto3 floor with the real minimum so the constraint is honest and the two stay in lockstep. Co-Authored-By: Claude Opus 4.8 <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.
WHAT
Bump the
boto3lower bound from>=1.38.2to>=1.41.2to match the existingbotocore>=1.41.2floor.uv.lockis regenerated; only the specifier metadata changes (resolved versions were alreadyboto3/botocore1.43.14).WHY
boto3 1.38.2declaresbotocore<1.39.0,>=1.38.2, which has an empty intersection with the currentbotocore>=1.41.2floor (raised in #708 forDpuCount). As a result,boto3>=1.38.2was never actually satisfiable together with thebotocorefloor — pip already resolvesboto3up to>=1.41.2in practice, so the declared1.38.2floor was misleading.botocore/boto3 ship in lockstep (matching version numbers), so the
boto3floor should track thebotocorefloor.boto3 1.41.2requiresbotocore<1.42.0,>=1.41.2, which aligns with the existing constraint.This is a follow-up to #708 / #709 (Managed Query Results): the managed-query-result workgroup APIs landed in botocore 1.38.28 and are already covered by the 1.41.2 floor, so no further bump is needed beyond making the
boto3floor consistent.