Skip to content

Commit b9691f2

Browse files
Pigbibiclaude
andcommitted
fix: pre-install runtime deps in verify step
- QPK declares zero dependencies but code uses requests/numpy/pandas - Install required packages before testing QPK imports Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 098cb47 commit b9691f2

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

.github/workflows/update-qpk-pin.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,8 @@ jobs:
5050
set -euo pipefail
5151
echo "::group::Verifying packages installable with new constraints"
5252
python -m pip install --upgrade pip
53+
# Pre-install runtime deps QPK needs but doesn't declare as dependencies
54+
python -m pip install requests numpy pandas
5355
# Install QPK WITHOUT constraints (avoids self-referencing SHA conflict)
5456
python -m pip install -e .
5557
python -c "import quant_platform_kit; print('QPK import OK')"

0 commit comments

Comments
 (0)