Skip to content

Commit

Permalink
skip if no pyarrow.compute
Browse files Browse the repository at this point in the history
  • Loading branch information
TomAugspurger committed Nov 26, 2023
1 parent 57f4722 commit 591dfb6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pandas/tests/series/accessors/test_struct_accessor.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import re

import pyarrow.compute as pc
import pytest

from pandas.compat.pyarrow import pa_version_under11p0
Expand All @@ -14,6 +13,7 @@
import pandas._testing as tm

pa = pytest.importorskip("pyarrow")
pc = pytest.importorskip("pyarrow.compute")


def test_struct_accessor_dtypes():
Expand Down

0 comments on commit 591dfb6

Please sign in to comment.