Skip to content

Commit db0fe4c

Browse files
authored
build(py-client): Downgrade urllib3 requirement (#179)
`sentry` depends on an old version of `stripe` (6.7.0) and `urllib3` (2.2.2). Upgrading `urllib3` to 2.5.0 causes issues with a test that use `stripe` (showing very strange behavior in my opinion), see https://github.com/getsentry/getsentry/actions/runs/19050598423/job/54409663305 The easiest solution is to downgrade our requirement of `urllib3` to `2.2.2` to match the version in `sentry`. The alternative could be to venture into upgrading `urllib3` and `stripe` in `sentry`, but given that the current version of `stripe` is `13.1.1` (!) this would likely be quite challenging due to many breaking changes.
1 parent 48807b9 commit db0fe4c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

clients/python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ license = { file = "LICENSE.md" }
1212
requires-python = ">=3.11"
1313
dependencies = [
1414
"sentry-sdk>=2.42.1",
15-
"urllib3>=2.5.0",
15+
"urllib3>=2.2.2",
1616
"zstandard>=0.18.0",
1717
]
1818

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)