Skip to content

Commit dc87ab7

Browse files
authored
more xfails
1 parent 4d0007b commit dc87ab7

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

tests/test_core.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
import numpy as np
77
import pytest
88
from dask.delayed import delayed
9+
from packaging.version import parse as parse_version
910

1011
import dask_histogram.core as dhc
1112

@@ -124,6 +125,10 @@ def test_nd_array(weights):
124125
np.testing.assert_allclose(h.counts(flow=True), dh.compute().counts(flow=True))
125126

126127

128+
@pytest.mark.xfail(
129+
parse_version(dask.__version__) >= parse_version("2025"),
130+
reason="dask dataframe changed substantially in 2025.1.0",
131+
)
127132
@pytest.mark.parametrize("weights", [True, None])
128133
def test_df_input(weights):
129134
pytest.importorskip("pandas")

0 commit comments

Comments
 (0)