Skip to content

Commit ef33089

Browse files
SNOW-2224943: support protobu>6 (#3642)
1 parent 0fd26c8 commit ef33089

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@
1919
- Added `block: bool = True` parameter to `StoredProcedure.__call__()` for async support across both named and anonymous stored procedures.
2020
- Added `Session.call_nowait()` that is equivalent to `Session.call(block=False)`.
2121

22+
#### Dependency Updates
23+
24+
- Added a dependency on `protobuf<6.32`
25+
2226
## 1.36.0 (YYYY-MM-DD)
2327

2428
### Snowpark Python API Updates

recipe/meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ requirements:
6161
- libffi <=3.4.4
6262
- pyyaml
6363
# Snowpark IR
64-
- protobuf >=3.20,<6
64+
- protobuf >=3.20,<6.32
6565
- python-dateutil
6666
- tzlocal
6767
run_constrained:

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"pyyaml",
2727
"cloudpickle>=1.6.0,<=3.0.0,!=2.1.0,!=2.2.0",
2828
# `protoc` < 3.20 is not able to generate protobuf code compatible with protobuf >= 3.20.
29-
"protobuf>=3.20, <6", # Snowpark IR
29+
"protobuf>=3.20, <6.32", # Snowpark IR
3030
"python-dateutil", # Snowpark IR
3131
"tzlocal", # Snowpark IR
3232
]

0 commit comments

Comments
 (0)