[Fix] Add boto3 override alongside botocore in uv-overrides.txt

aiobotocore[boto3] pins both boto3<1.40.62 and botocore<1.40.62.
The previous commit only overrode botocore. Added boto3 override too.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Yuneng Jiang 2026-04-01 11:49:25 -07:00
parent 467abd1909
commit b7849bff56
No known key found for this signature in database

View file

@ -1,6 +1,7 @@
# Override aiobotocore's strict botocore pin (<1.40.62) so it can coexist
# with boto3==1.42.80 (which requires botocore>=1.42.80).
# No aioboto3/aiobotocore release yet supports botocore 1.42.x.
# Override aiobotocore's strict boto3/botocore pins (<1.40.62) so they
# can coexist with boto3==1.42.80 (which requires botocore>=1.42.80).
# No aioboto3/aiobotocore release yet supports boto3/botocore 1.42.x.
# pip's lenient resolver handles this (Docker builds), but uv's strict
# resolver rejects it — this override bridges the gap for CI.
# resolver rejects it — these overrides bridge the gap for CI.
boto3>=1.42.80,<1.43.0
botocore>=1.42.80,<1.43.0