Skip to content

Commit 28256e2

Browse files
committed
.
1 parent 19cb677 commit 28256e2

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

sentry_sdk/integrations/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,7 @@ def iter_default_integrations(with_auto_enabling_integrations):
131131
"celery": (4, 4, 7),
132132
"chalice": (1, 16, 0),
133133
"clickhouse_driver": (0, 2, 0),
134+
"common": (1, 4, 0), # opentelemetry-sdk
134135
"django": (2, 0),
135136
"dramatiq": (1, 9),
136137
"falcon": (3, 0),

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def get_file_text(file_name):
4141
install_requires=[
4242
"urllib3>=1.26.11",
4343
"certifi",
44-
"opentelemetry-sdk",
44+
"opentelemetry-sdk>=1.4.0",
4545
],
4646
extras_require={
4747
"aiohttp": ["aiohttp>=3.5"],

tox.ini

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
# The file (and all resulting CI YAMLs) then need to be regenerated via
1111
# "scripts/generate-test-files.sh".
1212
#
13-
# Last generated: 2025-04-17T11:30:31.856957+00:00
13+
# Last generated: 2025-04-17T12:20:33.943833+00:00
1414

1515
[tox]
1616
requires =
@@ -138,8 +138,8 @@ envlist =
138138
# integration tests there.
139139

140140
# ~~~ Common ~~~
141-
{py3.7,py3.8,py3.9}-common-v1.0.0
142-
{py3.7,py3.8,py3.9,py3.10}-common-v1.11.1
141+
{py3.7,py3.8,py3.9}-common-v1.4.1
142+
{py3.7,py3.8,py3.9,py3.10}-common-v1.13.0
143143
{py3.7,py3.8,py3.9,py3.10,py3.11}-common-v1.22.0
144144
{py3.8,py3.9,py3.10,py3.11,py3.12,py3.13}-common-v1.32.1
145145

@@ -493,8 +493,8 @@ deps =
493493
# integration tests there.
494494

495495
# ~~~ Common ~~~
496-
common-v1.0.0: opentelemetry-sdk==1.0.0
497-
common-v1.11.1: opentelemetry-sdk==1.11.1
496+
common-v1.4.1: opentelemetry-sdk==1.4.1
497+
common-v1.13.0: opentelemetry-sdk==1.13.0
498498
common-v1.22.0: opentelemetry-sdk==1.22.0
499499
common-v1.32.1: opentelemetry-sdk==1.32.1
500500
common: pytest

0 commit comments

Comments
 (0)