From 1b349b7ee74a3416334dda31ad6aac132ab2d37e Mon Sep 17 00:00:00 2001 From: Pigbibi <20649888+Pigbibi@users.noreply.github.com> Date: Sun, 5 Jul 2026 06:14:17 +0800 Subject: [PATCH 1/3] chore: align QSL bundle pins Co-Authored-By: Codex --- uv.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uv.lock b/uv.lock index be35838..daea63c 100644 --- a/uv.lock +++ b/uv.lock @@ -789,7 +789,7 @@ wheels = [ [[package]] name = "quant-platform-kit" version = "0.7.40" -source = { git = "https://github.com/QuantStrategyLab/QuantPlatformKit.git?rev=d18fe32b57a0a8bb746bebf6f11465dd68107eae#d18fe32b57a0a8bb746bebf6f11465dd68107eae" } +source = { git = "https://github.com/QuantStrategyLab/QuantPlatformKit.git?rev=7032cde4547e7ec59af15df8935d142461a77051#7032cde4547e7ec59af15df8935d142461a77051" } [[package]] name = "requests" From b16892a8ba3ae1699a09025b41aa1081c6dab6de Mon Sep 17 00:00:00 2001 From: Pigbibi <20649888+Pigbibi@users.noreply.github.com> Date: Sun, 5 Jul 2026 06:55:41 +0800 Subject: [PATCH 2/3] chore: align QSL bundle to 2026.07.2 Co-Authored-By: Codex --- pyproject.toml | 2 +- qsl.toml | 2 +- uv.lock | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 7de1adb..b1d6401 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -10,7 +10,7 @@ readme = "README.md" requires-python = ">=3.11" dependencies = [ "pandas>=2.0", - "cn-equity-strategies @ git+https://github.com/QuantStrategyLab/CnEquityStrategies.git@357dba7e8896a7f488a484d4a3eea33894708ab9", + "cn-equity-strategies @ git+https://github.com/QuantStrategyLab/CnEquityStrategies.git@8dfadcf8a4dc6cc516f27a4013248474603d8ce2", ] [project.optional-dependencies] diff --git a/qsl.toml b/qsl.toml index d0ba3cf..49dc23c 100644 --- a/qsl.toml +++ b/qsl.toml @@ -8,4 +8,4 @@ artifact_contract = "docs/artifact_contract.md" snapshot_contract = "docs/artifact_contract.md" [qsl.compat] -bundle = "2026.07.1" +bundle = "2026.07.2" diff --git a/uv.lock b/uv.lock index daea63c..063c065 100644 --- a/uv.lock +++ b/uv.lock @@ -250,7 +250,7 @@ test = [ [package.metadata] requires-dist = [ { name = "akshare", marker = "extra == 'public-data'", specifier = ">=1.14" }, - { name = "cn-equity-strategies", git = "https://github.com/QuantStrategyLab/CnEquityStrategies.git?rev=357dba7e8896a7f488a484d4a3eea33894708ab9" }, + { name = "cn-equity-strategies", git = "https://github.com/QuantStrategyLab/CnEquityStrategies.git?rev=8dfadcf8a4dc6cc516f27a4013248474603d8ce2" }, { name = "pandas", specifier = ">=2.0" }, { name = "pytest", marker = "extra == 'test'", specifier = ">=8" }, ] @@ -259,7 +259,7 @@ provides-extras = ["test", "public-data"] [[package]] name = "cn-equity-strategies" version = "0.1.0" -source = { git = "https://github.com/QuantStrategyLab/CnEquityStrategies.git?rev=357dba7e8896a7f488a484d4a3eea33894708ab9#357dba7e8896a7f488a484d4a3eea33894708ab9" } +source = { git = "https://github.com/QuantStrategyLab/CnEquityStrategies.git?rev=8dfadcf8a4dc6cc516f27a4013248474603d8ce2#8dfadcf8a4dc6cc516f27a4013248474603d8ce2" } dependencies = [ { name = "pandas" }, { name = "quant-platform-kit" }, @@ -789,7 +789,7 @@ wheels = [ [[package]] name = "quant-platform-kit" version = "0.7.40" -source = { git = "https://github.com/QuantStrategyLab/QuantPlatformKit.git?rev=7032cde4547e7ec59af15df8935d142461a77051#7032cde4547e7ec59af15df8935d142461a77051" } +source = { git = "https://github.com/QuantStrategyLab/QuantPlatformKit.git?rev=37c81901160c5b31127a27dba1c63944933fb6bf#37c81901160c5b31127a27dba1c63944933fb6bf" } [[package]] name = "requests" From 9b2964e1d234f3719114b465c6c604960b314b61 Mon Sep 17 00:00:00 2001 From: Pigbibi <20649888+Pigbibi@users.noreply.github.com> Date: Sun, 5 Jul 2026 07:02:33 +0800 Subject: [PATCH 3/3] test: expect QSL bundle 2026.07.2 Co-Authored-By: Codex --- tests/test_qsl_metadata.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_qsl_metadata.py b/tests/test_qsl_metadata.py index d44d072..6098879 100644 --- a/tests/test_qsl_metadata.py +++ b/tests/test_qsl_metadata.py @@ -16,6 +16,6 @@ def test_qsl_metadata_has_compat_bundle() -> None: assert qsl["ring"] == 2 assert qsl.get("repo") == "CnEquitySnapshotPipelines" compat = qsl["compat"] - assert compat["bundle"] == "2026.07.1" + assert compat["bundle"] == "2026.07.2" assert qsl.get("artifact_contract") == "docs/artifact_contract.md" assert qsl.get("snapshot_contract") == "docs/artifact_contract.md"