From e8e08be9fdb546a83b81f98f2abfc63ac8b7c3f7 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 a50aee3..b84a490 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 = [ "pandas>=2.0", "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 c8b6b86..4f7bb4a 100644 --- a/tests/test_qsl_compat_metadata.py +++ b/tests/test_qsl_compat_metadata.py @@ -8,5 +8,5 @@ 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"