mirror of
https://github.com/wassname/evil_MoE.git
synced 2026-06-27 16:30:30 +08:00
modal: pin transformers to released >=5.8.0 (no floating @ main)
Floating @ main let a later main commit hang generate() (the other agent's deadlock). The local box runs 5.8.0.dev0; uv.lock pins the exact commit, the image uses the released 5.8.0 wheel of the same line. Qwen3-4B needs no main-only feature. Co-Authored-By: Claudypoo <288921227+claudypoo@users.noreply.github.com>
This commit is contained in:
+6
-3
@@ -55,9 +55,12 @@ image = (
|
||||
index_url="https://download.pytorch.org/whl/cu126",
|
||||
)
|
||||
.pip_install(
|
||||
# transformers from main: Qwen3 support + the gated-delta-net fix the repo
|
||||
# pins. Qwen3-4B itself is stable on main.
|
||||
"transformers @ git+https://github.com/huggingface/transformers.git",
|
||||
# transformers: released version, NOT floating `@ main`. The local box runs
|
||||
# 5.8.0.dev0 (uv.lock pins the exact commit for fine-grained repro); the image
|
||||
# uses the released >=5.8.0 wheel -- same code line, no floating main that let a
|
||||
# later commit hang generate(). Qwen3-4B needs no main-only feature (gated-
|
||||
# delta-net / qwen3_5 is for Qwen3.5, which we don't run). Bump if the box moves lines.
|
||||
"transformers>=5.8.0",
|
||||
"einops>=0.8",
|
||||
"jaxtyping>=0.2",
|
||||
"beartype>=0.18",
|
||||
|
||||
Reference in New Issue
Block a user