Skip to content

Commit

Permalink
Numba>=0.59 needs pandas>=2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
wence- committed Oct 4, 2024
1 parent fbce360 commit f4791b3
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions python/cudf/cudf_pandas_tests/test_cudf_pandas.py
Original file line number Diff line number Diff line change
Expand Up @@ -698,6 +698,11 @@ def test_rolling_win_type():
version.parse(numba_version) < version.parse("0.59"),
reason="Requires Numba 0.59 to fix segfaults on ARM. See https://github.com/numba/llvmlite/pull/1009",
)
@pytest.mark.xfail(
version.parse(numba_version) >= version.parse("0.59")
and PANDAS_VERSION < version.parse("2.1"),
reason="numba.generated_jit removed in 0.59, requires pandas >= 2.1",
)
def test_rolling_apply_numba_engine():
def weighted_mean(x):
arr = np.ones((1, x.shape[1]))
Expand Down

0 comments on commit f4791b3

Please sign in to comment.