File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
pandas/tests/frame/methods Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change 11
11
HAS_PYARROW ,
12
12
IS64 ,
13
13
PYPY ,
14
+ is_platform_arm ,
14
15
)
15
16
16
17
from pandas import (
23
24
option_context ,
24
25
)
25
26
import pandas ._testing as tm
27
+ from pandas .util .version import Version
26
28
27
29
28
30
@pytest .fixture
@@ -544,7 +546,9 @@ def test_memory_usage_empty_no_warning(using_infer_string):
544
546
@pytest .mark .single_cpu
545
547
def test_info_compute_numba ():
546
548
# GH#51922
547
- pytest .importorskip ("numba" )
549
+ numba = pytest .importorskip ("numba" )
550
+ if Version (numba .__version__ ) == Version ("0.61" ) and is_platform_arm ():
551
+ pytest .skip (f"Segfaults on ARM platforms with numba { numba .__version__ } " )
548
552
df = DataFrame ([[1 , 2 ], [3 , 4 ]])
549
553
550
554
with option_context ("compute.use_numba" , True ):
You can’t perform that action at this time.
0 commit comments