@@ -926,14 +926,14 @@ def test_additional_extension_arrays(self, pa):
926
926
df = pd .DataFrame ({"a" : pd .Series ([1 , 2 , 3 , None ], dtype = "Int64" )})
927
927
check_round_trip (df , pa )
928
928
929
- @td .skip_if_no ("pyarrow" , min_version = "1.0.0" )
929
+ @td .skip_if_no ("pyarrow" )
930
930
def test_pyarrow_backed_string_array (self , pa , string_storage ):
931
931
# test ArrowStringArray supported through the __arrow_array__ protocol
932
932
df = pd .DataFrame ({"a" : pd .Series (["a" , None , "c" ], dtype = "string[pyarrow]" )})
933
933
with pd .option_context ("string_storage" , string_storage ):
934
934
check_round_trip (df , pa , expected = df .astype (f"string[{ string_storage } ]" ))
935
935
936
- @td .skip_if_no ("pyarrow" , min_version = "2.0.0" )
936
+ @td .skip_if_no ("pyarrow" )
937
937
def test_additional_extension_types (self , pa ):
938
938
# test additional ExtensionArrays that are supported through the
939
939
# __arrow_array__ protocol + by defining a custom ExtensionType
@@ -985,7 +985,7 @@ def test_timezone_aware_index(self, request, pa, timezone_aware_date_list):
985
985
# this use-case sets the resolution to 1 minute
986
986
check_round_trip (df , pa , check_dtype = False )
987
987
988
- @td .skip_if_no ("pyarrow" , min_version = "1.0.0" )
988
+ @td .skip_if_no ("pyarrow" )
989
989
def test_filter_row_groups (self , pa ):
990
990
# https://github.com/pandas-dev/pandas/issues/26551
991
991
df = pd .DataFrame ({"a" : list (range (0 , 3 ))})
0 commit comments