From 03bf814d5373122871006b2c09a0ec8d3a768c53 Mon Sep 17 00:00:00 2001 From: "Jonathan D.A. Jewell" <6759885+hyperpolymath@users.noreply.github.com> Date: Thu, 14 May 2026 15:00:06 +0100 Subject: [PATCH] fix(deps): declare Statistics stdlib so 1.10+ precompile succeeds The macos rebased CI run failed with: ArgumentError: Package InvestigativeJournalist does not have Statistics in its dependencies Julia 1.10+ requires stdlibs to be explicitly listed in [deps] even when they ship with the runtime. Statistics is used transitively but not declared. Add it. Sister to hyperpolymath/PRComms.jl#6 which made the same fix there. Co-Authored-By: Claude Opus 4.7 --- Project.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/Project.toml b/Project.toml index 92ee7a5..6458818 100644 --- a/Project.toml +++ b/Project.toml @@ -10,6 +10,7 @@ JSON3 = "0f8b85d8-7281-11e9-16c2-39a750bddbf1" SQLite = "0aa819cd-b072-5ff4-a722-6bc24af294d9" Dates = "ade2ca70-3891-5945-98fb-dc099432e06a" SHA = "ea8e919c-243c-51af-8825-aaa63cd721ce" +Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2" HTTP = "cd3eb016-35fb-5094-929b-558a96fad6f3" URIs = "5c2747f8-b7ea-4ff2-ba2e-563bfd36b1d4" TextAnalysis = "a2db99b7-8b79-58f8-94bf-bbc811eef33d"