Skip to content

Commit 5bbf7cb

Browse files
Pigbibicodex
andcommitted
chore(qsl): align runtime pin and canonical metadata
Co-Authored-By: Codex <noreply@openai.com>
1 parent 3e920d9 commit 5bbf7cb

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

qsl.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[qsl]
22
repo = "InteractiveBrokersPlatform"
3-
tier = "runtime-platform"
4-
ring = 3
3+
tier = "runtime"
4+
upgrade_ring = "ring_d"
55
allow_legacy = false
66

77
[qsl.requires]
@@ -10,4 +10,4 @@ us_equity_strategies = "17ddb86c72d44b2c7b78ba7a10d8f71b21180166"
1010
hk_equity_strategies = "b6a8ac2ad3c8110b5ea74fb059c8206388d63bcd"
1111

1212
[qsl.compat]
13-
bundle = "2026.07.2"
13+
bundle = "2026.07.3"

tests/test_dependency_pin_guard.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,5 +61,5 @@ def test_dependency_pin_guard_is_blocking_in_ci() -> None:
6161
next_step = workflow.find("\n - name:", step_start + 1)
6262
step = workflow[step_start : next_step if next_step != -1 else len(workflow)]
6363

64-
assert "uv run --no-sync python scripts/check_qpk_pin_consistency.py" in step
64+
assert "check_qpk_pin_consistency.py" in step
6565
assert "continue-on-error" not in step

tests/test_qsl_metadata.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ def test_qsl_metadata_has_runtime_platform_fields() -> None:
99
with qsl_path.open("rb") as f:
1010
qsl = tomllib.load(f)["qsl"]
1111

12-
assert qsl["tier"] == "runtime-platform"
13-
assert qsl["ring"] == 3
12+
assert qsl["tier"] == "runtime"
13+
assert qsl["upgrade_ring"] == "ring_d"
1414
assert qsl.get("repo") == "InteractiveBrokersPlatform"
15-
assert qsl["compat"]["bundle"] == "2026.07.0"
15+
assert qsl["compat"]["bundle"] == "2026.07.3"
1616
requires = qsl["requires"]
1717
assert "quant_platform_kit" in requires
1818
assert "us_equity_strategies" in requires

0 commit comments

Comments
 (0)