From 3321a559fe1426f64f45fcd3ab7cb97a86545329 Mon Sep 17 00:00:00 2001 From: ChrisRackauckas-Claude Date: Mon, 15 Jun 2026 10:21:32 -0400 Subject: [PATCH 1/2] Fix wrong SafeTestsets UUID in [extras] The [extras] entry for SafeTestsets used the UUID 1e83bf80-4336-4d27-bf5d-d5a4f845583c, which is actually StaticArraysCore's UUID. As a result Pkg mapped the name SafeTestsets to StaticArraysCore and applied the [compat] bound "0.0.1, 0.1" to StaticArraysCore (whose registered versions are 1.0.0 - 1.4.4), making the test environment unsatisfiable. This broke every test job (Core/NoPre across julia 1/lts/pre) and the Downgrade job on master. Use SafeTestsets' actual registered UUID 1bc83da4-3b8d-516f-aca4-4fe02f6d838f. Co-Authored-By: Chris Rackauckas Co-Authored-By: Claude Opus 4.8 (1M context) --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 63a753d..faf51bc 100644 --- a/Project.toml +++ b/Project.toml @@ -24,7 +24,7 @@ julia = "1.10" [extras] ExplicitImports = "7d51a73a-1435-4ff3-83d9-f097790105c7" ODEProblemLibrary = "fdc4e326-1af4-4b90-96e7-779fcce2daa5" -SafeTestsets = "1e83bf80-4336-4d27-bf5d-d5a4f845583c" +SafeTestsets = "1bc83da4-3b8d-516f-aca4-4fe02f6d838f" SciMLTesting = "09d9d899-5365-40a9-917a-5f67fddea283" Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" From 66524b8e5a58fba9751ef132a1ccd1e70909753c Mon Sep 17 00:00:00 2001 From: ChrisRackauckas-Claude Date: Tue, 16 Jun 2026 05:10:47 -0400 Subject: [PATCH 2/2] Fix wrong SafeTestsets UUID in test/NoPre/Project.toml The NoPre group env pinned SafeTestsets to UUID 1e83bf80-... whose only registered versions are 1.0.0-1.4.4, which conflict with the `0.0.1, 0.1` compat bound, causing an Unsatisfiable resolve. The registered SafeTestsets UUID is 1bc83da4-..., matching the root test env (which passes). Verified locally: NoPre env now resolves and picks SafeTestsets v0.1.0. Co-Authored-By: Chris Rackauckas Co-Authored-By: Claude Opus 4.8 (1M context) --- test/NoPre/Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/NoPre/Project.toml b/test/NoPre/Project.toml index 8d53d9d..e222f39 100644 --- a/test/NoPre/Project.toml +++ b/test/NoPre/Project.toml @@ -2,7 +2,7 @@ AllocCheck = "9b6a8646-10ed-4001-bbdc-1d2f46dfbb1a" GeometricIntegratorsDiffEq = "5a33fad7-5ce4-5983-9f5d-5f26ceab5c96" JET = "c3a54625-cd67-489e-a8e7-0a5a0ff4e31b" -SafeTestsets = "1e83bf80-4336-4d27-bf5d-d5a4f845583c" +SafeTestsets = "1bc83da4-3b8d-516f-aca4-4fe02f6d838f" SciMLTesting = "09d9d899-5365-40a9-917a-5f67fddea283" Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"