Skip to content

Commit c50eca3

Browse files
committed
updated pandas installed version check
1 parent 90fd53b commit c50eca3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/system/test_pandas.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@ def test_load_table_from_dataframe_w_nullable_int64_datatype(
341341

342342

343343
@pytest.mark.skipif(
344-
PANDAS_INSTALLED_VERSION[0:2] in ["0."],
344+
PANDAS_INSTALLED_VERSION[0:2].startswith("0."),
345345
reason="Only `pandas version >=1.0.0` is supported",
346346
)
347347
def test_load_table_from_dataframe_w_nullable_int64_datatype_automatic_schema(

0 commit comments

Comments
 (0)