Skip to content

Commit d7c6879

Browse files
nsleighclaude
andcommitted
fix: relax boto3/botocore upper-bound pin to avoid dependency conflicts
The <1.38 ceiling was stale and started conflicting with other Home Assistant integrations (e.g. LLM Vision) that require a newer boto3 with no upper bound, causing HA's requirements installer to fail setup entirely with RequirementsNotFound for any integration that depends on this package. The AWS Cognito IdP auth calls this library relies on (InitiateAuth/RespondToAuthChallenge) are stable across boto3/botocore versions, so there's no need to cap it. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
1 parent cc0db8f commit d7c6879

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ classifiers = [
2525
"Topic :: Software Development :: Libraries :: Python Modules",
2626
]
2727
dependencies = [
28-
"boto3>=1.34,<1.38",
29-
"botocore>=1.34,<1.38",
28+
"boto3>=1.34",
29+
"botocore>=1.34",
3030
"requests",
3131
"aiohttp",
3232
"pyquery",

0 commit comments

Comments
 (0)