Skip to content

Commit

Permalink
updated pandas installed version check
Browse files Browse the repository at this point in the history
  • Loading branch information
kiraksi committed Nov 28, 2023
1 parent 90fd53b commit c50eca3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/system/test_pandas.py
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ def test_load_table_from_dataframe_w_nullable_int64_datatype(


@pytest.mark.skipif(
PANDAS_INSTALLED_VERSION[0:2] in ["0."],
PANDAS_INSTALLED_VERSION[0:2].startswith("0."),
reason="Only `pandas version >=1.0.0` is supported",
)
def test_load_table_from_dataframe_w_nullable_int64_datatype_automatic_schema(
Expand Down

0 comments on commit c50eca3

Please sign in to comment.