Skip to content

Commit 8398094

Browse files
authored
SNOW-1758760: Unpin modin/pandas versions in sproc tests (#3135)
1 parent 1dc31ba commit 8398094

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

tests/integ/modin/test_modin_stored_procedures.py

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,21 +6,15 @@
66

77
import modin.pandas as pd
88
import pandas as native_pd
9-
import pytest
10-
from packaging import version
119

1210
from snowflake.snowpark import Session
1311
from snowflake.snowpark.functions import sproc
1412
from tests.integ.utils.sql_counter import sql_count_checker
1513
from tests.utils import multithreaded_run
1614

17-
pytestmark = pytest.mark.skipif(
18-
version.parse(native_pd.__version__) != version.parse("2.2.1"),
19-
reason="SNOW-1758760: modin stored procedure test must pin pandas==2.2.1 and modin==0.28.1",
20-
)
2115

2216
# Must pin modin version to match version available in Snowflake Anaconda
23-
SPROC_MODIN_VERSION = "0.28.1"
17+
SPROC_MODIN_VERSION = "0.30.1"
2418

2519
PACKAGE_LIST = [
2620
# modin 0.30.1 supports any pandas 2.2.x, so just pick whichever one is installed in the client.

0 commit comments

Comments
 (0)