Commit 7c69059
refactor(docker): drop redundant --force-reinstall, --no-deps is enough
Empirical test in a fresh devel_latest container after the prior fix
(e2b82b7) showed `pip install --no-cache-dir --no-deps` with the three
cutlass-dsl subpackages named explicitly produces the correct PyPI
4.4.1 wheel content (3241-byte cute/arch/__init__.py with the
top-level ProxyKind / SharedSpace re-export) without --force-reinstall.
The reason --no-cache-dir alone fails (still gets the cached 3232-byte
wheel) but --no-deps + --no-cache-dir + explicit subpackages succeeds
is that `[cu13]` extra routes pip through a dep-resolution code path
that doesn't fully honor --no-cache-dir, whereas explicit-args with
--no-deps takes a simpler install path where --no-cache-dir does take
effect. --force-reinstall was belt-and-suspenders we no longer need.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Signed-off-by: Runchu Zhao <zhaorunchu@gmail.com>1 parent 8bc955c commit 7c69059
1 file changed
Lines changed: 4 additions & 3 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
39 | 39 | | |
40 | 40 | | |
41 | 41 | | |
42 | | - | |
43 | | - | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
44 | 45 | | |
45 | 46 | | |
46 | | - | |
| 47 | + | |
47 | 48 | | |
48 | 49 | | |
49 | 50 | | |
| |||
0 commit comments