Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions qsl.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ ring = 3
allow_legacy = false

[qsl.requires]
quant_platform_kit = "0063af3b4a974650ea58a7d3f26dd1b94f65d3e8"
us_equity_strategies = "46887bc3f5454d5b59623b1f5efb7c65912c6b8b"
quant_platform_kit = "7032cde4547e7ec59af15df8935d142461a77051"
us_equity_strategies = "9f0e5e2deca8a9c16d711eb4772f08a7901da101"
Comment on lines +8 to +9

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Keep runtime dependency pins aligned with QSL refs

These QSL refs now point at newer QuantPlatformKit and UsEquityStrategies commits, but the actual install inputs still pin the old SHAs in pyproject.toml:21-22 and uv.lock, and the Docker image runs uv sync --frozen --no-dev. In deployed/runtime builds this means the service still installs 0063af3... / 46887bc... while qsl.toml declares 7032cde... / 9f0e5e..., so the compatibility bundle metadata can no longer describe the code that is actually running. Please update the package pins and lockfile together with these refs, or leave the QSL refs unchanged.

Useful? React with 👍 / 👎.


[qsl.compat]
bundle = "2026.07.0"
bundle = "2026.07.1"

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Update the QSL metadata test with the bundle bump

With this value changed to 2026.07.1, python -m pytest tests/test_qsl_metadata.py -q now fails because tests/test_qsl_metadata.py:15 still asserts the old 2026.07.0 bundle. Please update the test expectation in the same change so the compatibility bump does not leave CI red.

Useful? React with 👍 / 👎.

2 changes: 1 addition & 1 deletion tests/test_qsl_metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def test_qsl_metadata_has_runtime_platform_fields() -> None:
assert qsl["tier"] == "runtime-platform"
assert qsl["ring"] == 3
assert qsl.get("repo") == "FirstradePlatform"
assert qsl["compat"]["bundle"] == "2026.07.0"
assert qsl["compat"]["bundle"] == "2026.07.1"
requires = qsl["requires"]
assert "quant_platform_kit" in requires
assert "us_equity_strategies" in requires
Loading