techfreakworm commited on
Commit
1494a15
·
unverified ·
1 Parent(s): 22a5949

fix(spaces): pin custom nodes to SHAs (also fixes LTXVideo's master default)

Browse files

ComfyUI-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.

Files changed (1) hide show
  1. app.py +5 -5
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", "main"),
37
- ("https://github.com/kijai/ComfyUI-KJNodes.git", "main"),
38
- ("https://github.com/rgthree/rgthree-comfy.git", "main"),
39
- ("https://github.com/Kosinkadink/ComfyUI-VideoHelperSuite.git", "main"),
40
- ("https://github.com/pythongosssss/ComfyUI-Custom-Scripts.git", "main"),
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