We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d0007b commit dc87ab7Copy full SHA for dc87ab7
tests/test_core.py
@@ -6,6 +6,7 @@
6
import numpy as np
7
import pytest
8
from dask.delayed import delayed
9
+from packaging.version import parse as parse_version
10
11
import dask_histogram.core as dhc
12
@@ -124,6 +125,10 @@ def test_nd_array(weights):
124
125
np.testing.assert_allclose(h.counts(flow=True), dh.compute().counts(flow=True))
126
127
128
+@pytest.mark.xfail(
129
+ parse_version(dask.__version__) >= parse_version("2025"),
130
+ reason="dask dataframe changed substantially in 2025.1.0",
131
+)
132
@pytest.mark.parametrize("weights", [True, None])
133
def test_df_input(weights):
134
pytest.importorskip("pandas")
0 commit comments