You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SNOW-1739034: Unskip tests requiring pandas 2.2.3 in anaconda. (#2829)
pandas 2.2.3 is available in anaconda, so we can once again run the tests that try to use UD(T)Fs.
Fixes SNOW-1739034
Signed-off-by: sfc-gh-mvashishtha <mahesh.vashishtha@snowflake.com>
if get_snowflake_agg_func(func, {}, axis) is not None: # pragma: no cover
8442
+
if get_snowflake_agg_func(func, {}, axis) is not None:
8446
8443
# np.std and np.var 'ddof' parameter defaults to 0 but
8447
8444
# df.std and df.var 'ddof' parameter defaults to 1.
8448
8445
# Set it here explicitly to 0 if not provided.
@@ -8470,7 +8467,7 @@ def apply(
8470
8467
# If raw, then pass numpy ndarray rather than pandas Series as input to the apply function.
8471
8468
if raw:
8472
8469
8473
-
def wrapped_func(*args, **kwargs): # type: ignore[no-untyped-def] # pragma: no cover: adding type hint causes an error when creating udtf. also, skip coverage for this function because coverage tools can't tell that we're executing this function because we execute it in a UDTF.
8470
+
def wrapped_func(*args, **kwargs): # type: ignore[no-untyped-def] # pragma: no cover: skip coverage for this function because coverage tools can't tell that we're executing this function because we execute it in a UDTF.
0 commit comments