From 4637669947f9810d4c975874b2e659079366571a Mon Sep 17 00:00:00 2001 From: "Chris Rackauckas (Claude)" Date: Sat, 13 Jun 2026 06:49:56 -0400 Subject: [PATCH] QA: normalize versions to [lts, 1] (drop pre) The root test/test_groups.toml [QA] group ran Aqua/JET on the latest stable channel only (["1"]). Normalize to the canonical set ["lts", "1"] so QA also runs on the LTS (1.10) channel, matching the rest of the SciML fleet. The repo's [compat] julia floor is 1.10 (== LTS), so the lts slot is used directly (no floor exception). Only [QA].versions is changed; other groups are untouched. Co-Authored-By: Chris Rackauckas Co-Authored-By: Claude Opus 4.8 (1M context) --- test/test_groups.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_groups.toml b/test/test_groups.toml index 8f01bd4..23c3a10 100644 --- a/test/test_groups.toml +++ b/test/test_groups.toml @@ -5,4 +5,4 @@ versions = ["1", "lts"] versions = ["1", "lts"] [QA] -versions = ["1"] +versions = ["lts", "1"]