File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11[qsl ]
22repo = " InteractiveBrokersPlatform"
3- tier = " runtime-platform "
4- ring = 3
3+ tier = " runtime"
4+ upgrade_ring = " ring_d "
55allow_legacy = false
66
77[qsl .requires ]
@@ -10,4 +10,4 @@ us_equity_strategies = "17ddb86c72d44b2c7b78ba7a10d8f71b21180166"
1010hk_equity_strategies = " b6a8ac2ad3c8110b5ea74fb059c8206388d63bcd"
1111
1212[qsl .compat ]
13- bundle = " 2026.07.2 "
13+ bundle = " 2026.07.3 "
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments