Skip to content

Commit 4b54d62

Browse files
ChrisRackauckas-ClaudeChrisRackauckasclaude
authored
Fix wrong SafeTestsets UUID in [extras] (#74)
* 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 <accounts@chrisrackauckas.com> Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> * 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 <accounts@chrisrackauckas.com> Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> --------- Co-authored-by: ChrisRackauckas-Claude <accounts@chrisrackauckas.com> Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent 86d291b commit 4b54d62

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ julia = "1.10"
2424
[extras]
2525
ExplicitImports = "7d51a73a-1435-4ff3-83d9-f097790105c7"
2626
ODEProblemLibrary = "fdc4e326-1af4-4b90-96e7-779fcce2daa5"
27-
SafeTestsets = "1e83bf80-4336-4d27-bf5d-d5a4f845583c"
27+
SafeTestsets = "1bc83da4-3b8d-516f-aca4-4fe02f6d838f"
2828
SciMLTesting = "09d9d899-5365-40a9-917a-5f67fddea283"
2929
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
3030

test/NoPre/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
AllocCheck = "9b6a8646-10ed-4001-bbdc-1d2f46dfbb1a"
33
GeometricIntegratorsDiffEq = "5a33fad7-5ce4-5983-9f5d-5f26ceab5c96"
44
JET = "c3a54625-cd67-489e-a8e7-0a5a0ff4e31b"
5-
SafeTestsets = "1e83bf80-4336-4d27-bf5d-d5a4f845583c"
5+
SafeTestsets = "1bc83da4-3b8d-516f-aca4-4fe02f6d838f"
66
SciMLTesting = "09d9d899-5365-40a9-917a-5f67fddea283"
77
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
88

0 commit comments

Comments
 (0)