From b6d76075bbc94d4a820328e4919f1c7197860407 Mon Sep 17 00:00:00 2001 From: Pigbibi <20649888+Pigbibi@users.noreply.github.com> Date: Sun, 5 Jul 2026 07:03:18 +0800 Subject: [PATCH 1/3] chore: align CryptoStrategies QSL bundle to 2026.07.2 Co-Authored-By: Codex --- pyproject.toml | 2 +- qsl.toml | 4 ++-- tests/test_qsl_compat_metadata.py | 2 +- uv.lock | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index e165dbe..e87ad50 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,7 @@ description = "Shared crypto strategy catalog and implementations" readme = "README.md" requires-python = ">=3.11" dependencies = [ - "quant-platform-kit @ git+https://github.com/QuantStrategyLab/QuantPlatformKit.git@7032cde4547e7ec59af15df8935d142461a77051", + "quant-platform-kit @ git+https://github.com/QuantStrategyLab/QuantPlatformKit.git@37c81901160c5b31127a27dba1c63944933fb6bf", ] [tool.setuptools] diff --git a/qsl.toml b/qsl.toml index 535c0c7..3c21fd2 100644 --- a/qsl.toml +++ b/qsl.toml @@ -2,7 +2,7 @@ tier = "strategy-library" ring = 1 [compat] -bundle = "2026.07.1" +bundle = "2026.07.2" requires = [ - "quant-platform-kit @ git+https://github.com/QuantStrategyLab/QuantPlatformKit.git@7032cde4547e7ec59af15df8935d142461a77051", + "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 b536dde..5f233f7 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.1", "compat.bundle mismatch" + assert data.get("compat", {}).get("bundle") == "2026.07.2", "compat.bundle mismatch" diff --git a/uv.lock b/uv.lock index 58e166e..246c2b3 100644 --- a/uv.lock +++ b/uv.lock @@ -11,9 +11,9 @@ dependencies = [ ] [package.metadata] -requires-dist = [{ name = "quant-platform-kit", git = "https://github.com/QuantStrategyLab/QuantPlatformKit.git?rev=7032cde4547e7ec59af15df8935d142461a77051" }] +requires-dist = [{ name = "quant-platform-kit", git = "https://github.com/QuantStrategyLab/QuantPlatformKit.git?rev=37c81901160c5b31127a27dba1c63944933fb6bf" }] [[package]] name = "quant-platform-kit" version = "0.10.0" -source = { git = "https://github.com/QuantStrategyLab/QuantPlatformKit.git?rev=7032cde4547e7ec59af15df8935d142461a77051#7032cde4547e7ec59af15df8935d142461a77051" } +source = { git = "https://github.com/QuantStrategyLab/QuantPlatformKit.git?rev=37c81901160c5b31127a27dba1c63944933fb6bf#37c81901160c5b31127a27dba1c63944933fb6bf" } From 126f17d75035af3786ec59b2a449779455bab72b Mon Sep 17 00:00:00 2001 From: Pigbibi <20649888+Pigbibi@users.noreply.github.com> Date: Sun, 5 Jul 2026 07:04:00 +0800 Subject: [PATCH 2/3] test: expect QPK_PIN 2026.07.2 Co-Authored-By: Codex --- tests/test_contract_governance.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_contract_governance.py b/tests/test_contract_governance.py index 7150f2c..2791f9d 100644 --- a/tests/test_contract_governance.py +++ b/tests/test_contract_governance.py @@ -35,7 +35,7 @@ "binance", "BINANCE_", ) -QPK_HEALTH_COMMIT = "7032cde4547e7ec59af15df8935d142461a77051" +QPK_HEALTH_COMMIT = "37c81901160c5b31127a27dba1c63944933fb6bf" QPK_OLD_HEALTHLESS_COMMIT = "86f03fb8e83c0d372f4e1c64cccf3e6da50b8dd4" From 39bf4733cef922bdeacfd0adef394e7819a04908 Mon Sep 17 00:00:00 2001 From: Pigbibi <20649888+Pigbibi@users.noreply.github.com> Date: Sun, 5 Jul 2026 07:06:52 +0800 Subject: [PATCH 3/3] chore: retrigger required checks Co-Authored-By: Codex