Skip to content

Commit f315335

Browse files
committed
fix(ci): install wheel dependencies in publish smoke test
The publish smoke test installed dist/*.whl with --no-deps and then ran vstack --help. Since vstack imports yaml at startup, the runtime dependency PyYAML was missing and the step failed with ModuleNotFoundError. Install the wheel normally so runtime dependencies are resolved during the smoke test.
1 parent 8c280e5 commit f315335

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ jobs:
106106
- name: Smoke test built wheel
107107
run: |
108108
python -m pip install --upgrade pip
109-
python -m pip install --no-deps dist/*.whl
109+
python -m pip install dist/*.whl
110110
vstack --help >/dev/null
111111
112112
- name: Validate built artifact version

0 commit comments

Comments
 (0)