Skip to content

Commit b254146

Browse files
SNOW-2888257: Support protobuf 6.33 (snowflakedb#4030)
1 parent d2b50f5 commit b254146

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
@@ -12,6 +12,10 @@
1212

1313
- Improved `DataFrameReader` to return columns in deterministic order when using `INFER_SCHEMA`.
1414

15+
#### Dependency Updates
16+
17+
- Added a dependency on `protobuf<6.34` (was `<6.32`).
18+
1519
### Snowpark pandas API Updates
1620

1721
#### New Features

recipe/meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ requirements:
6262
- libffi <=3.4.4
6363
- pyyaml
6464
# Snowpark IR
65-
- protobuf >=3.20,<6.32
65+
- protobuf >=3.20,<6.34
6666
- python-dateutil
6767
- tzlocal
6868
run_constrained:

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"pyyaml",
2929
"cloudpickle>=1.6.0,<=3.1.1,!=2.1.0,!=2.2.0",
3030
# `protoc` < 3.20 is not able to generate protobuf code compatible with protobuf >= 3.20.
31-
"protobuf>=3.20, <6.32", # Snowpark IR
31+
"protobuf>=3.20, <6.34", # Snowpark IR
3232
"python-dateutil", # Snowpark IR
3333
"tzlocal", # Snowpark IR
3434
]

0 commit comments

Comments
 (0)