diff --git a/qsl.toml b/qsl.toml index 469d4e0..7480e4e 100644 --- a/qsl.toml +++ b/qsl.toml @@ -2,7 +2,7 @@ tier = "strategy-library" ring = 1 [compat] -bundle = "2026.07.0" +bundle = "2026.07.1" requires = [ "pandas>=2.0", "quant-platform-kit @ git+https://github.com/QuantStrategyLab/QuantPlatformKit.git@0063af3b4a974650ea58a7d3f26dd1b94f65d3e8", diff --git a/tests/test_qsl_compat_metadata.py b/tests/test_qsl_compat_metadata.py index 0441a02..6953865 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.0", "compat.bundle mismatch" + assert data.get("compat", {}).get("bundle") == "2026.07.1", "compat.bundle mismatch"