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.
2 parents f4b66c9 + a7e216b commit a83784bCopy full SHA for a83784b
pyproject.toml
@@ -67,8 +67,8 @@ overrides.matrix.extras.features = [
67
]
68
69
[[tool.hatch.envs.hatch-test.matrix]]
70
-python = [ "3.11", "3.12", "3.13" ]
71
-extras = [ "min", "full" ]
+python = [ "3.13", "3.12", "3.11" ]
+extras = [ "full", "min" ]
72
73
[tool.ruff]
74
line-length = 100
tests/test_stats.py
@@ -62,9 +62,7 @@ def test_sum(
62
arr = array_type(np_arr.copy())
63
assert arr.dtype == dtype_in
64
65
- sum_: NDArray[Any] | np.number[Any] | types.DaskArray = stats.sum(
66
- arr, axis=axis, dtype=dtype_arg
- )
+ sum_ = stats.sum(arr, axis=axis, dtype=dtype_arg)
match axis, arr:
case _, types.DaskArray():
0 commit comments