File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed
Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change 11import numpy as np
22import pytest
33
4+ from pandas .compat import is_platform_arm
45import pandas .util ._test_decorators as td
56
67import pandas as pd
910 Index ,
1011)
1112import pandas ._testing as tm
13+ from pandas .util .version import Version
1214
1315pytestmark = [td .skip_if_no ("numba" ), pytest .mark .single_cpu ]
1416
@@ -19,6 +21,9 @@ def apply_axis(request):
1921
2022
2123def test_numba_vs_python_noop (float_frame , apply_axis ):
24+ numba = pytest .importorskip ("numba" )
25+ if Version (numba .__version__ ) == Version ("0.61" ) and is_platform_arm ():
26+ pytest .skip (f"Segfaults on ARM platforms with numba { numba .__version__ } " )
2227 func = lambda x : x
2328 result = float_frame .apply (func , engine = "numba" , axis = apply_axis )
2429 expected = float_frame .apply (func , engine = "python" , axis = apply_axis )
You can’t perform that action at this time.
0 commit comments