Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
TomAugspurger committed Dec 22, 2023
1 parent 8cfefb0 commit cce3fcc
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion pandas/tests/series/accessors/test_struct_accessor.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@

import pytest

from pandas.compat.pyarrow import pa_version_under13p0
from pandas.compat.pyarrow import (
pa_version_under11p0,
pa_version_under13p0,
)

from pandas import (
ArrowDtype,
Expand Down Expand Up @@ -102,6 +105,7 @@ def test_struct_accessor_field_with_invalid_name_or_index():
ser.struct.field(1.1)


@pytest.mark.skipif(pa_version_under11p0, reason="pyarrow>=11.0.0 required")
def test_struct_accessor_explode():
index = Index([-100, 42, 123])
ser = Series(
Expand Down

0 comments on commit cce3fcc

Please sign in to comment.