Skip to content

Commit c43a100

Browse files
Merge branch 'main' into helmeleegy-fix-replicate-local-env-doctest
2 parents c84a99c + b254146 commit c43a100

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
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
]

src/snowflake/snowpark/session.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1795,7 +1795,7 @@ def replicate_local_environment(
17951795
Example::
17961796
17971797
>>> import sys
1798-
>>> from snowflake.snowpark.functions import udf # doctest: +SKIP
1798+
>>> from snowflake.snowpark.functions import udf
17991799
>>> import numpy
18001800
>>> import pandas
18011801
>>> # test_requirements.txt contains "numpy" and "pandas"

0 commit comments

Comments
 (0)