From 2d9ba91d271166ce9a792ec11daae60034a91c95 Mon Sep 17 00:00:00 2001 From: Pigbibi <20649888+Pigbibi@users.noreply.github.com> Date: Fri, 10 Jul 2026 09:47:54 +0800 Subject: [PATCH] chore(qsl): align canonical strategy metadata Co-Authored-By: Codex --- qsl.toml | 6 +++--- tests/test_qsl_compat_metadata.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/qsl.toml b/qsl.toml index 3c21fd2..c8cac72 100644 --- a/qsl.toml +++ b/qsl.toml @@ -1,8 +1,8 @@ -tier = "strategy-library" -ring = 1 +tier = "strategy-lib" +upgrade_ring = "ring_b" [compat] -bundle = "2026.07.2" +bundle = "2026.07.3" requires = [ "quant-platform-kit @ git+https://github.com/QuantStrategyLab/QuantPlatformKit.git@37c81901160c5b31127a27dba1c63944933fb6bf", ] diff --git a/tests/test_qsl_compat_metadata.py b/tests/test_qsl_compat_metadata.py index 5f233f7..0cb7c0b 100644 --- a/tests/test_qsl_compat_metadata.py +++ b/tests/test_qsl_compat_metadata.py @@ -8,4 +8,4 @@ def test_qsl_compat_metadata_exists_and_bundle() -> None: with qsl_path.open("rb") as f: data = tomllib.load(f) - assert data.get("compat", {}).get("bundle") == "2026.07.2", "compat.bundle mismatch" + assert data.get("compat", {}).get("bundle") == "2026.07.3", "compat.bundle mismatch"