Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ dev = [

toxgen = [
"jinja2",
"packaging<26.0",
"packaging<26.3",
"pip",
"requests",
]

docs = [
"gevent",
"shibuya",
"sphinx<8.2",
"sphinx<9.2",
"sphinx-autodoc-typehints[type_comments]>=2.3.0",
"typing-extensions",
]
Expand All @@ -37,7 +37,7 @@ aws = [
# https://github.com/boto/botocore/blob/develop/setup.cfg
# So we pin this here to make our Lambda layer work with
# Lambda Function using Python 3.7+
"urllib3<1.27; python_version < '3.10'",
"urllib3<2.8; python_version < '3.10'",

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

urllib3 cap breaks botocore

High Severity

For Python versions below 3.10, the aws dependency group now allows urllib3 up to 2.x (&lt;2.8) instead of the previous 1.x ceiling (&lt;1.27). Botocore still requires urllib3 below 1.27 on those runtimes, and the same file still documents that Lambda layers must respect botocore’s urllib3 limits.

Additional Locations (1)
Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit 345abbc. Configure here.

]

typing = [
Expand All @@ -51,7 +51,7 @@ typing = [
"types-gevent",
"types-greenlet",
"types-redis",
"types-setuptools<71",
"types-setuptools<83",
"types-webob",
"opentelemetry-distro[otlp]",
"pymongo",
Expand All @@ -60,7 +60,7 @@ typing = [
"launchdarkly-server-sdk",
"openfeature-sdk",
"statsig",
"UnleashClient<6",
"UnleashClient<7",
"typer",
"strawberry-graphql",
"httpx",
Expand Down
Loading
Loading