Commit 90ae17c
committed
Fix autoawq build failure by pinning to version with wheels
The nightly pipeline was failing when pip tried to build autoawq==0.2.8
from source, which requires torch to be available during the build process.
With torch==2.8.0, pip's dependency resolver was selecting autoawq==0.2.8
which needs to build from source.
Pinning to autoawq==0.2.9 ensures pip uses the pre-built wheel, avoiding
the build-time torch dependency issue. This is cleaner than using
--no-build-isolation and maintains proper build isolation.
Note: autoawq is used in partition.py for AWQ quantization.
Fixes: ModuleNotFoundError: No module named 'torch' during autoawq build1 parent bfe6b3e commit 90ae17c
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
23 | 23 | | |
24 | 24 | | |
25 | 25 | | |
26 | | - | |
| 26 | + | |
27 | 27 | | |
28 | 28 | | |
29 | 29 | | |
| |||
0 commit comments