From 40e9a76a1d238811bcdcf4f4379251f3f430d864 Mon Sep 17 00:00:00 2001 From: ChrisRackauckas Date: Wed, 27 May 2026 07:52:00 +0000 Subject: [PATCH] Add missing [compat] entries to fix Aqua deps_compat Adds compat bounds for stdlib deps (Distributed, Random) and for the test-only extras (RNGTest, StaticArrays, Test) so that Aqua.test_deps_compat passes. Without these, downstream CI (e.g. VectorizationBase.jl Interface tests) failed on the deps_compat check. Co-Authored-By: Claude Opus 4.7 (1M context) --- Project.toml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Project.toml b/Project.toml index 77f8794..846bfc0 100644 --- a/Project.toml +++ b/Project.toml @@ -19,9 +19,14 @@ StaticArraysCore = "1e83bf80-4336-4d27-bf5d-d5a4f845583c" VectorizedRNGStaticArraysExt = ["StaticArraysCore"] [compat] +Distributed = "1" +RNGTest = "1" +Random = "1" Requires = "1" SLEEFPirates = "0.6.29" +StaticArrays = "1" StaticArraysCore = "1" +Test = "1" UnPack = "1" VectorizationBase = "0.19.38, 0.20.1, 0.21" julia = "1.6"