Commit 25fa6d2
committed
Update ci.yml
Fixed the CI smoke import by installing the package runtime dependencies before the import check.
What changed:
- In ./.github/workflows/ci.yml, the Windows job now runs:
- pip install -e . --no-build-isolation
- before python -c "import metbit; print(metbit.__version__); print(metbit.backend_info())"
Why this fixes it:
- metbit imports numpy and other runtime packages at import time.
- The CI job was only installing build tooling, so the smoke import failed immediately on missing dependencies.1 parent b82a629 commit 25fa6d2
1 file changed
Lines changed: 3 additions & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
110 | 110 | | |
111 | 111 | | |
112 | 112 | | |
| 113 | + | |
| 114 | + | |
| 115 | + | |
113 | 116 | | |
114 | 117 | | |
115 | 118 | | |
| |||
0 commit comments