Skip to content

Commit f10d404

Browse files
committed
Merge branch 'ivana/potel/fix-propagate-scope-false' into ivana/potel/determine-lowest-otel-version
2 parents ebc2331 + f835a19 commit f10d404

File tree

5 files changed

+15
-17
lines changed

5 files changed

+15
-17
lines changed

scripts/populate_tox/config.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,10 @@
4141
"py3.8": ["hypothesis"],
4242
},
4343
},
44+
"cohere": {
45+
"package": "cohere",
46+
"python": ">=3.9",
47+
},
4448
"django": {
4549
"package": "django",
4650
"deps": {

scripts/populate_tox/populate_tox.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,6 @@
7373
"beam",
7474
"boto3",
7575
"chalice",
76-
"cohere",
7776
"gcp",
7877
"httpx",
7978
"langchain",

scripts/populate_tox/tox.jinja

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -73,10 +73,6 @@ envlist =
7373
# Cloud Resource Context
7474
{py3.7,py3.12,py3.13}-cloud_resource_context
7575

76-
# Cohere
77-
{py3.9,py3.11,py3.12}-cohere-v5
78-
{py3.9,py3.11,py3.12}-cohere-latest
79-
8076
# GCP
8177
{py3.7}-gcp
8278

@@ -225,10 +221,6 @@ deps =
225221
chalice-v1.16: chalice~=1.16.0
226222
chalice-latest: chalice
227223
228-
# Cohere
229-
cohere-v5: cohere~=5.3.3
230-
cohere-latest: cohere
231-
232224
# HTTPX
233225
httpx-v0.16: pytest-httpx==0.10.0
234226
httpx-v0.18: pytest-httpx==0.12.0

sentry_sdk/integrations/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,7 @@ def iter_default_integrations(with_auto_enabling_integrations):
132132
"chalice": (1, 16, 0),
133133
"clickhouse_driver": (0, 2, 0),
134134
"common": (1, 4, 0), # opentelemetry-sdk
135+
"cohere": (5, 4, 0),
135136
"django": (2, 0),
136137
"dramatiq": (1, 9),
137138
"falcon": (3, 0),

tox.ini

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -73,10 +73,6 @@ envlist =
7373
# Cloud Resource Context
7474
{py3.7,py3.12,py3.13}-cloud_resource_context
7575

76-
# Cohere
77-
{py3.9,py3.11,py3.12}-cohere-v5
78-
{py3.9,py3.11,py3.12}-cohere-latest
79-
8076
# GCP
8177
{py3.7}-gcp
8278

@@ -145,6 +141,11 @@ envlist =
145141

146142

147143
# ~~~ AI ~~~
144+
{py3.9,py3.10,py3.11}-cohere-v5.4.0
145+
{py3.9,py3.11,py3.12}-cohere-v5.9.4
146+
{py3.9,py3.11,py3.12}-cohere-v5.13.9
147+
{py3.9,py3.11,py3.12}-cohere-v5.15.0
148+
148149
{py3.8,py3.10,py3.11}-huggingface_hub-v0.22.2
149150
{py3.8,py3.10,py3.11}-huggingface_hub-v0.25.2
150151
{py3.8,py3.12,py3.13}-huggingface_hub-v0.28.1
@@ -375,10 +376,6 @@ deps =
375376
chalice-v1.16: chalice~=1.16.0
376377
chalice-latest: chalice
377378

378-
# Cohere
379-
cohere-v5: cohere~=5.3.3
380-
cohere-latest: cohere
381-
382379
# HTTPX
383380
httpx-v0.16: pytest-httpx==0.10.0
384381
httpx-v0.18: pytest-httpx==0.12.0
@@ -504,6 +501,11 @@ deps =
504501

505502

506503
# ~~~ AI ~~~
504+
cohere-v5.4.0: cohere==5.4.0
505+
cohere-v5.9.4: cohere==5.9.4
506+
cohere-v5.13.9: cohere==5.13.9
507+
cohere-v5.15.0: cohere==5.15.0
508+
507509
huggingface_hub-v0.22.2: huggingface_hub==0.22.2
508510
huggingface_hub-v0.25.2: huggingface_hub==0.25.2
509511
huggingface_hub-v0.28.1: huggingface_hub==0.28.1

0 commit comments

Comments
 (0)