From 810ca94ba8840e86e90df50de8aa271c0fcf1a07 Mon Sep 17 00:00:00 2001 From: QuantStrategyLab QPK Sync Date: Sat, 29 Aug 2026 16:31:29 +0000 Subject: [PATCH] chore(deps): align QPK pin to 1b9c68dcc63b Automated downstream QPK pin update after QPK_PIN landed on main. Co-Authored-By: Claude --- .github/workflows/drift-check.yml | 6 +++--- pyproject.toml | 2 +- qsl.toml | 2 +- tests/test_drift_workflow_config.py | 6 +++--- tests/test_qsl_compat_metadata.py | 2 +- uv.lock | 4 ++-- 6 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/drift-check.yml b/.github/workflows/drift-check.yml index 759531e..827bc73 100644 --- a/.github/workflows/drift-check.yml +++ b/.github/workflows/drift-check.yml @@ -31,7 +31,7 @@ jobs: uses: actions/checkout@v6 with: repository: QuantStrategyLab/QuantPlatformKit - ref: be45863ad75316e3c993338828da356ddfb42f65 + ref: 1b9c68dcc63be3fcd6ad72ecc20cff9e791d533f path: external/QuantPlatformKit - name: Set up Python @@ -215,7 +215,7 @@ jobs: contents: read issues: write id-token: write - uses: QuantStrategyLab/QuantPlatformKit/.github/workflows/reusable-drift-check.yml@be45863ad75316e3c993338828da356ddfb42f65 + uses: QuantStrategyLab/QuantPlatformKit/.github/workflows/reusable-drift-check.yml@1b9c68dcc63be3fcd6ad72ecc20cff9e791d533f with: strategy_domain: us_equity caller_event_name: ${{ github.event_name }} @@ -224,7 +224,7 @@ jobs: snapshot_checkout_path: external/UsEquitySnapshotPipelines snapshot_repository_ref: ${{ needs.preflight_backtests.outputs.snapshot_repository_ref }} ai_gateway_service_url: ${{ vars.AI_GATEWAY_SERVICE_URL }} - quant_platform_kit_ref: be45863ad75316e3c993338828da356ddfb42f65 + quant_platform_kit_ref: 1b9c68dcc63be3fcd6ad72ecc20cff9e791d533f lifecycle_preflight_artifact: lifecycle-preflight-${{ github.run_id }}-${{ github.run_attempt }} strategy_profile: ${{ inputs.strategy_profile || '' }} secrets: diff --git a/pyproject.toml b/pyproject.toml index 3aad1fa..4d1ea83 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,7 +11,7 @@ requires-python = ">=3.11" dependencies = [ "pandas>=2.0", "pytz>=2024.1", - "quant-platform-kit @ git+https://github.com/QuantStrategyLab/QuantPlatformKit.git@be45863ad75316e3c993338828da356ddfb42f65", + "quant-platform-kit @ git+https://github.com/QuantStrategyLab/QuantPlatformKit.git@1b9c68dcc63be3fcd6ad72ecc20cff9e791d533f", ] [tool.setuptools] diff --git a/qsl.toml b/qsl.toml index 37deaf2..d2cedbe 100644 --- a/qsl.toml +++ b/qsl.toml @@ -6,5 +6,5 @@ bundle = "2026.08.0" requires = [ "pandas>=2.0", "pytz>=2024.1", - "quant-platform-kit @ git+https://github.com/QuantStrategyLab/QuantPlatformKit.git@be45863ad75316e3c993338828da356ddfb42f65", + "quant-platform-kit @ git+https://github.com/QuantStrategyLab/QuantPlatformKit.git@1b9c68dcc63be3fcd6ad72ecc20cff9e791d533f", ] diff --git a/tests/test_drift_workflow_config.py b/tests/test_drift_workflow_config.py index 38e586e..f90a5f1 100644 --- a/tests/test_drift_workflow_config.py +++ b/tests/test_drift_workflow_config.py @@ -21,7 +21,7 @@ def test_drift_workflow_wires_real_snapshot_history_and_preflight_bundle() -> No assert '"conclusion": "success"' in workflow assert '"QuantStrategyLab/UsEquitySnapshotPipelines"' in workflow assert "repository: QuantStrategyLab/QuantPlatformKit" in workflow - assert "ref: be45863ad75316e3c993338828da356ddfb42f65" in workflow + assert "ref: 1b9c68dcc63be3fcd6ad72ecc20cff9e791d533f" in workflow assert "python -m pip install --no-deps -e external/QuantPlatformKit" in workflow assert "scripts/run_walk_forward_backtest.py" in workflow assert '"--list-lifecycle-profiles"' in workflow @@ -30,7 +30,7 @@ def test_drift_workflow_wires_real_snapshot_history_and_preflight_bundle() -> No assert "LIFECYCLE_PREFLIGHT_BUNDLE_ROOT" in workflow assert "Upload lifecycle preflight artifact" in workflow assert "actions/upload-artifact@v7" in workflow - assert "uses: QuantStrategyLab/QuantPlatformKit/.github/workflows/reusable-drift-check.yml@be45863ad75316e3c993338828da356ddfb42f65" in workflow + assert "uses: QuantStrategyLab/QuantPlatformKit/.github/workflows/reusable-drift-check.yml@1b9c68dcc63be3fcd6ad72ecc20cff9e791d533f" in workflow assert "strategy_domain: us_equity" in workflow assert "caller_event_name: ${{ github.event_name }}" in workflow assert "caller_pr_head_repository: ${{ github.event.pull_request.head.repo.full_name || '' }}" in workflow @@ -38,7 +38,7 @@ def test_drift_workflow_wires_real_snapshot_history_and_preflight_bundle() -> No assert "snapshot_checkout_path: external/UsEquitySnapshotPipelines" in workflow assert "ai_gateway_service_url: ${{ vars.AI_GATEWAY_SERVICE_URL }}" in workflow assert "lifecycle_preflight_artifact: lifecycle-preflight-${{ github.run_id }}-${{ github.run_attempt }}" in workflow - assert "quant_platform_kit_ref: be45863ad75316e3c993338828da356ddfb42f65" in workflow + assert "quant_platform_kit_ref: 1b9c68dcc63be3fcd6ad72ecc20cff9e791d533f" in workflow assert "strategy_profile:" in workflow assert "REQUESTED_STRATEGY_PROFILE: ${{ inputs.strategy_profile || '' }}" in workflow assert '"--list-profiles"' in workflow diff --git a/tests/test_qsl_compat_metadata.py b/tests/test_qsl_compat_metadata.py index de4384d..d99be57 100644 --- a/tests/test_qsl_compat_metadata.py +++ b/tests/test_qsl_compat_metadata.py @@ -3,7 +3,7 @@ ROOT = Path(__file__).resolve().parents[1] -QPK_REVISION = "be45863ad75316e3c993338828da356ddfb42f65" +QPK_REVISION = "1b9c68dcc63be3fcd6ad72ecc20cff9e791d533f" QPK_URL = ( "quant-platform-kit @ git+https://github.com/QuantStrategyLab/" f"QuantPlatformKit.git@{QPK_REVISION}" diff --git a/uv.lock b/uv.lock index 76a09ed..a5fc0f2 100644 --- a/uv.lock +++ b/uv.lock @@ -241,7 +241,7 @@ wheels = [ [[package]] name = "quant-platform-kit" version = "0.10.0" -source = { git = "https://github.com/QuantStrategyLab/QuantPlatformKit.git?rev=be45863ad75316e3c993338828da356ddfb42f65#be45863ad75316e3c993338828da356ddfb42f65" } +source = { git = "https://github.com/QuantStrategyLab/QuantPlatformKit.git?rev=1b9c68dcc63be3fcd6ad72ecc20cff9e791d533f#1b9c68dcc63be3fcd6ad72ecc20cff9e791d533f" } [[package]] name = "six" @@ -275,5 +275,5 @@ dependencies = [ requires-dist = [ { name = "pandas", specifier = ">=2.0" }, { name = "pytz", specifier = ">=2024.1" }, - { name = "quant-platform-kit", git = "https://github.com/QuantStrategyLab/QuantPlatformKit.git?rev=be45863ad75316e3c993338828da356ddfb42f65" }, + { name = "quant-platform-kit", git = "https://github.com/QuantStrategyLab/QuantPlatformKit.git?rev=1b9c68dcc63be3fcd6ad72ecc20cff9e791d533f" }, ]