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
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ description = "Shared crypto strategy catalog and implementations"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"quant-platform-kit @ git+https://github.com/QuantStrategyLab/QuantPlatformKit.git@b0eacd2fe4884f7f2447b704a232e9a121f396c4",
"quant-platform-kit @ git+https://github.com/QuantStrategyLab/QuantPlatformKit.git@0063af3b4a974650ea58a7d3f26dd1b94f65d3e8",

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 Keep the QPK pin aligned with the governance test

Changing the project dependency to 0063af3... leaves tests/test_contract_governance.py expecting the exact QPK URL to end at b0eacd2... in test_qpk_dependency_includes_shared_health_module_release; the CI workflow runs python -m pytest -q tests, so this commit makes the test suite fail on every run. Update the governance constant/expectation in the same change as this pin bump.

Useful? React with 👍 / 👎.

]

[tool.setuptools]
Expand Down
8 changes: 8 additions & 0 deletions qsl.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
tier = "strategy-library"
ring = 1

[compat]
bundle = "2026.07.0"
requires = [
"quant-platform-kit @ git+https://github.com/QuantStrategyLab/QuantPlatformKit.git@0063af3b4a974650ea58a7d3f26dd1b94f65d3e8",
]
2 changes: 1 addition & 1 deletion tests/test_contract_governance.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"binance",
"BINANCE_",
)
QPK_HEALTH_COMMIT = "b0eacd2fe4884f7f2447b704a232e9a121f396c4"
QPK_HEALTH_COMMIT = "0063af3b4a974650ea58a7d3f26dd1b94f65d3e8"
QPK_OLD_HEALTHLESS_COMMIT = "86f03fb8e83c0d372f4e1c64cccf3e6da50b8dd4"


Expand Down
11 changes: 11 additions & 0 deletions tests/test_qsl_compat_metadata.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
from pathlib import Path
import tomllib


def test_qsl_compat_metadata_exists_and_bundle() -> None:
qsl_path = Path(__file__).resolve().parents[1] / "qsl.toml"
assert qsl_path.exists(), "qsl.toml missing"
with qsl_path.open("rb") as f:
data = tomllib.load(f)

assert data.get("compat", {}).get("bundle") == "2026.07.0", "compat.bundle mismatch"
21 changes: 19 additions & 2 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading