From 3269c4d23dec4b87291b340fe9fd32bef54024b8 Mon Sep 17 00:00:00 2001 From: Christopher Rackauckas Date: Wed, 26 Aug 2026 08:51:19 +0000 Subject: [PATCH] compat: drop the unregistered SafeTestsets 1.x major SafeTestsets = "0.1, 1" -> "0.1" SafeTestsets has only 0.0.1 and 0.1.0 registered in General; there is no 1.x. The trailing `1` component matches no registered version, so it is dead weight in the resolver and misreports the supported range. Removing it changes nothing that can actually resolve. Co-Authored-By: Chris Rackauckas Co-Authored-By: Claude Claude-Session: https://claude.ai/code/session_014FEzNTLFutCmTEAZ3zBg5R --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 67f27a3d..423e6cb3 100644 --- a/Project.toml +++ b/Project.toml @@ -40,7 +40,7 @@ PrecompileTools = "1.2.1" QuasiMonteCarlo = "0.3, 0.4" Random = "1.10" RecursiveArrayTools = "4" -SafeTestsets = "0.1, 1" +SafeTestsets = "0.1" SciMLTesting = "2.4" StableRNGs = "1" Statistics = "1.10"