Skip to content

Commit a83784b

Browse files
authored
Merge branch 'main' into pa/lazy
2 parents f4b66c9 + a7e216b commit a83784b

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@ overrides.matrix.extras.features = [
6767
]
6868

6969
[[tool.hatch.envs.hatch-test.matrix]]
70-
python = [ "3.11", "3.12", "3.13" ]
71-
extras = [ "min", "full" ]
70+
python = [ "3.13", "3.12", "3.11" ]
71+
extras = [ "full", "min" ]
7272

7373
[tool.ruff]
7474
line-length = 100

tests/test_stats.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,7 @@ def test_sum(
6262
arr = array_type(np_arr.copy())
6363
assert arr.dtype == dtype_in
6464

65-
sum_: NDArray[Any] | np.number[Any] | types.DaskArray = stats.sum(
66-
arr, axis=axis, dtype=dtype_arg
67-
)
65+
sum_ = stats.sum(arr, axis=axis, dtype=dtype_arg)
6866

6967
match axis, arr:
7068
case _, types.DaskArray():

0 commit comments

Comments
 (0)