Skip to content

Commit b854f84

Browse files
authored
Merge pull request #574 from dask-contrib/unpin-dask-2025.3.0
deps: unpin dask
2 parents 050b9db + a5de173 commit b854f84

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ classifiers = [
3737
]
3838
dependencies = [
3939
"awkward >=2.5.1",
40-
"dask >=2023.04.0, <2025.3.0",
40+
"dask >=2023.04.0",
4141
"cachetools",
4242
"typing_extensions >=4.8.0",
4343
]

tests/test_distributed.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88

99
import awkward as ak
1010
import numpy as np
11-
from dask import persist
1211
from dask.delayed import delayed
1312
from distributed import Client
1413
from distributed.client import _wait
@@ -43,7 +42,7 @@ def test_compute(loop, ndjson_points_file): # noqa
4342
@gen_cluster(client=True)
4443
async def test_persist(c, s, a, b, ndjson_points_file):
4544
daa = dak.from_json([ndjson_points_file])
46-
(x1,) = persist(daa, scheduler=c)
45+
(x1,) = c.persist([daa])
4746
await _wait(x1)
4847
assert x1.__dask_keys__()[0] in daa.__dask_keys__()
4948

0 commit comments

Comments
 (0)