From b0be13e6e1d8a39046285f7d0e85bb72c918272a Mon Sep 17 00:00:00 2001 From: Christopher Rackauckas Date: Wed, 26 Aug 2026 08:52:42 +0000 Subject: [PATCH] compat: drop the unregistered SafeTestsets 1.x major (#99) 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. Claude-Session: https://claude.ai/code/session_014FEzNTLFutCmTEAZ3zBg5R Co-authored-by: Claude --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 13317d3..f91565c 100644 --- a/Project.toml +++ b/Project.toml @@ -15,7 +15,7 @@ MATLAB = "0.8.1, 0.9, 0.10" ModelingToolkitBase = "1.30" ParameterizedFunctions = "5" PrecompileTools = "1.2.1" -SafeTestsets = "0.1, 1" +SafeTestsets = "0.1" SciMLBase = "3.28.4" SciMLPublic = "1" SciMLTesting = "2.4"