Skip to content

Commit 83c4d3e

Browse files
SNOW-2094085: Limit supported range for snowpak-ml-python in modin dependency (#3338)
1 parent 355d24b commit 83c4d3e

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ def run(self):
209209
"plotly<6.0.0", # Snowpark pandas 3rd party library testing
210210
# TODO(SNOW-1938831): Test snowflake-ml-python on python 3.12 once
211211
# snowflake-ml-python is available on python 3.12.
212-
"snowflake-ml-python; python_version<'3.12'",
212+
"snowflake-ml-python>=1.8.0; python_version<'3.12'",
213213
],
214214
"localtest": [
215215
"pandas",

src/snowflake/snowpark/modin/plugin/compiler/snowflake_query_compiler.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19259,7 +19259,6 @@ def unstack(
1925919259
self._raise_not_implemented_error_for_timedelta()
1926019260

1926119261
level = [level]
19262-
1926319262
index_names = self.get_index_names()
1926419263

1926519264
# Check to see if we have a MultiIndex, if we do, make sure we remove

0 commit comments

Comments
 (0)