Spaces:
Running on Zero
Running on Zero
fix(spaces): pin custom nodes to SHAs (also fixes LTXVideo's master default)
Browse filesComfyUI-LTXVideo defaults to 'master', not 'main', so the previous loop
failed at fetch --depth 1 origin main with "couldn't find remote ref
main". Pinning all five custom nodes to the current HEAD SHAs sidesteps
the branch-name issue and makes the Spaces deploy reproducible.
app.py
CHANGED
|
@@ -33,11 +33,11 @@ COMFYUI_COMMIT = os.environ.get(
|
|
| 33 |
)
|
| 34 |
|
| 35 |
CUSTOM_NODES_PINNED: list[tuple[str, str]] = [
|
| 36 |
-
("https://github.com/Lightricks/ComfyUI-LTXVideo.git", "
|
| 37 |
-
("https://github.com/kijai/ComfyUI-KJNodes.git", "
|
| 38 |
-
("https://github.com/rgthree/rgthree-comfy.git", "
|
| 39 |
-
("https://github.com/Kosinkadink/ComfyUI-VideoHelperSuite.git", "
|
| 40 |
-
("https://github.com/pythongosssss/ComfyUI-Custom-Scripts.git", "
|
| 41 |
]
|
| 42 |
|
| 43 |
|
|
|
|
| 33 |
)
|
| 34 |
|
| 35 |
CUSTOM_NODES_PINNED: list[tuple[str, str]] = [
|
| 36 |
+
("https://github.com/Lightricks/ComfyUI-LTXVideo.git", "2acf7af8991f33b5cc06ec26753cb6e88e057d04"),
|
| 37 |
+
("https://github.com/kijai/ComfyUI-KJNodes.git", "01d9fa9c983273532cacdf9532c74a93c7dc86d2"),
|
| 38 |
+
("https://github.com/rgthree/rgthree-comfy.git", "683836c46e898668936c433502504cc0627482c5"),
|
| 39 |
+
("https://github.com/Kosinkadink/ComfyUI-VideoHelperSuite.git", "2984ec4c4b93292421888f38db74a5e8802a8ff8"),
|
| 40 |
+
("https://github.com/pythongosssss/ComfyUI-Custom-Scripts.git", "609f3afaa74b2f88ef9ce8d939626065e3247469"),
|
| 41 |
]
|
| 42 |
|
| 43 |
|