From b7dc36e8b75c897575e8b5b7e864e415b00e6445 Mon Sep 17 00:00:00 2001 From: Tim Holy Date: Wed, 5 Jun 2024 13:23:35 -0500 Subject: [PATCH] Add missing [compat] entries (#230) #214 was missing [compat] for Distributions (see https://github.com/JuliaRegistries/General/pull/108324), and we might as well add it for test dependencies. Note that Julia 1.1 doesn't like stdlibs [compat], so that is omitted. --- Project.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Project.toml b/Project.toml index 4d8c768..a1bd61f 100644 --- a/Project.toml +++ b/Project.toml @@ -17,6 +17,8 @@ StatsBase = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91" [compat] Arpack = "0.3, 0.4, 0.5" +Distributions = "0.25" +StableRNGs = "1" Statistics = "1" StatsAPI = "^1.3" StatsBase = "^0.33, 0.34"