Skip to content

Commit b17e51d

Browse files
committed
.
1 parent 6176ea5 commit b17e51d

File tree

4 files changed

+16
-15
lines changed

4 files changed

+16
-15
lines changed

scripts/populate_tox/config.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -357,6 +357,7 @@
357357
"spark": {
358358
"package": "pyspark",
359359
"deps": {},
360+
"python": ">=3.8",
360361
},
361362
"starlette": {
362363
"package": "starlette",

scripts/populate_tox/populate_tox.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -106,9 +106,10 @@ def _prefilter_releases(integration: str, releases: dict[str, dict]) -> list[Ver
106106
min_supported = _MIN_VERSIONS.get(integration)
107107
if min_supported:
108108
min_supported = Version(".".join(map(str, min_supported)))
109-
print(f" Minimum supported version for {integration} is {min_supported}.")
110109
else:
111-
print(f" {integration} doesn't have a minimum version. Consider defining one")
110+
print(
111+
f" {integration} doesn't have a minimum version defined in sentry_sdk/integrations/__init__.py. Consider defining one"
112+
)
112113

113114
filtered_releases = []
114115

@@ -177,7 +178,6 @@ def _supports_lowest(release: Version) -> bool:
177178
if not _supports_lowest(releases[0]):
178179
i = bisect_left(releases, True, key=_supports_lowest)
179180
if i != len(releases) and _supports_lowest(releases[i]):
180-
print(i)
181181
# we found the lowest version that supports at least some Python
182182
# version(s) that we do, cut off the rest
183183
releases = releases[i:]

sentry_sdk/integrations/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ def iter_default_integrations(with_auto_enabling_integrations):
138138
"flask": (0, 10),
139139
"gql": (3, 4, 1),
140140
"graphene": (3, 3),
141-
"grpc": (1, 21, 1), # grpcio
141+
"grpc": (1, 32, 0), # grpcio
142142
"huggingface_hub": (0, 22),
143143
"langchain": (0, 0, 210),
144144
"launchdarkly": (9, 8, 0),

tox.ini

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -225,9 +225,9 @@ envlist =
225225

226226

227227
# ~~~ Network ~~~
228-
{py3.6,py3.7,py3.8}-grpc-v1.27.2
229-
{py3.6,py3.8,py3.9}-grpc-v1.40.0
230-
{py3.7,py3.10,py3.11}-grpc-v1.55.3
228+
{py3.6,py3.7,py3.8}-grpc-v1.32.0
229+
{py3.6,py3.9,py3.10}-grpc-v1.44.0
230+
{py3.7,py3.10,py3.11}-grpc-v1.58.3
231231
{py3.8,py3.12,py3.13}-grpc-v1.69.0
232232

233233
{py3.6,py3.7,py3.8}-requests-v2.23.0
@@ -251,8 +251,9 @@ envlist =
251251
{py3.6,py3.10,py3.11}-huey-v2.4.5
252252
{py3.6,py3.11,py3.12}-huey-v2.5.2
253253

254-
{py3.6,py3.7}-spark-v2.4.8
255-
{py3.6,py3.8,py3.9}-spark-v3.0.3
254+
{py3.8,py3.9}-spark-v3.0.3
255+
{py3.8,py3.9}-spark-v3.2.4
256+
{py3.8,py3.10,py3.11}-spark-v3.4.4
256257
{py3.8,py3.10,py3.11}-spark-v3.5.4
257258

258259

@@ -291,7 +292,6 @@ envlist =
291292

292293

293294
# ~~~ Misc ~~~
294-
{py3.6,py3.7,py3.8}-loguru-v0.4.1
295295
{py3.6,py3.7,py3.8}-loguru-v0.5.3
296296
{py3.6,py3.9,py3.10}-loguru-v0.6.0
297297
{py3.6,py3.12,py3.13}-loguru-v0.7.3
@@ -625,9 +625,9 @@ deps =
625625

626626

627627
# ~~~ Network ~~~
628-
grpc-v1.27.2: grpcio==1.27.2
629-
grpc-v1.40.0: grpcio==1.40.0
630-
grpc-v1.55.3: grpcio==1.55.3
628+
grpc-v1.32.0: grpcio==1.32.0
629+
grpc-v1.44.0: grpcio==1.44.0
630+
grpc-v1.58.3: grpcio==1.58.3
631631
grpc-v1.69.0: grpcio==1.69.0
632632
grpc: protobuf
633633
grpc: mypy-protobuf
@@ -658,8 +658,9 @@ deps =
658658
huey-v2.4.5: huey==2.4.5
659659
huey-v2.5.2: huey==2.5.2
660660

661-
spark-v2.4.8: pyspark==2.4.8
662661
spark-v3.0.3: pyspark==3.0.3
662+
spark-v3.2.4: pyspark==3.2.4
663+
spark-v3.4.4: pyspark==3.4.4
663664
spark-v3.5.4: pyspark==3.5.4
664665

665666

@@ -726,7 +727,6 @@ deps =
726727

727728

728729
# ~~~ Misc ~~~
729-
loguru-v0.4.1: loguru==0.4.1
730730
loguru-v0.5.3: loguru==0.5.3
731731
loguru-v0.6.0: loguru==0.6.0
732732
loguru-v0.7.3: loguru==0.7.3

0 commit comments

Comments
 (0)