From cfb4d11de17dd47092697146ae6e2c760ca13752 Mon Sep 17 00:00:00 2001 From: CompatHelper Julia Date: Thu, 7 May 2026 00:16:21 +0000 Subject: [PATCH] CompatHelper: bump compat for CellListMap in [extras] to 0.10, (keep existing compat) --- Project.toml | 2 +- test/test_periodic.jl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Project.toml b/Project.toml index c13a096..bc097bc 100644 --- a/Project.toml +++ b/Project.toml @@ -9,7 +9,7 @@ StaticArrays = "90137ffa-7385-5640-81b9-e52037218182" [compat] AbstractTrees = "0.4" -CellListMap = "0.9.14" +CellListMap = "0.10" Distances = "0.10.12" ParallelTestRunner = "2" StableRNGs = "1.0.4" diff --git a/test/test_periodic.jl b/test/test_periodic.jl index 890d9a3..76c86f3 100644 --- a/test/test_periodic.jl +++ b/test/test_periodic.jl @@ -412,7 +412,7 @@ end ptree = PeriodicTree(tree, bounds_min, bounds_max) coords = reduce(hcat, data) - pairs = neighborlist(coords, radius, unitcell=bounds_max .- bounds_min) + pairs = neighborlist(positions=coords, cutoff=radius, unitcell=bounds_max .- bounds_min) adjacency = [Set{Int}() for _ in 1:length(data)] for (i, j, _) in pairs push!(adjacency[i], j)