Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion assets/requirements/macos.compiled
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ comfyui-embedded-docs==0.3.1
comfyui-manager==4.0.3b7
# via -r assets/ComfyUI/manager_requirements.txt
# from https://pypi.org/simple
comfyui-workflow-templates==0.7.64
comfyui-workflow-templates==0.7.69
# via -r assets/ComfyUI/requirements.txt
# from https://pypi.org/simple
comfyui-workflow-templates-core==0.3.58
Expand Down
2 changes: 1 addition & 1 deletion assets/requirements/windows_cpu.compiled
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ comfyui-embedded-docs==0.3.1
comfyui-manager==4.0.3b7
# via -r assets/ComfyUI/manager_requirements.txt
# from https://pypi.org/simple
comfyui-workflow-templates==0.7.64
comfyui-workflow-templates==0.7.69
# via -r assets/ComfyUI/requirements.txt
# from https://pypi.org/simple
comfyui-workflow-templates-core==0.3.58
Expand Down
2 changes: 1 addition & 1 deletion assets/requirements/windows_nvidia.compiled
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ comfyui-embedded-docs==0.3.1
comfyui-manager==4.0.4
# via -r assets/ComfyUI/manager_requirements.txt
# from https://pypi.org/simple
comfyui-workflow-templates==0.7.64
comfyui-workflow-templates==0.7.69
# via -r assets/ComfyUI/requirements.txt
# from https://pypi.org/simple
comfyui-workflow-templates-core==0.3.61
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"optionalBranch": ""
},
"comfyUI": {
"version": "0.7.0",
"version": "0.8.2",
"optionalBranch": ""
},
"managerCommit": "d82e1f5d677fec0b85a6be6beb1e32d5627ef6af",
Expand Down
2 changes: 1 addition & 1 deletion scripts/core-requirements.patch
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ diff --git a/requirements.txt b/requirements.txt
+++ b/requirements.txt
@@ -1,4 +1,3 @@
-comfyui-frontend-package==1.35.9
comfyui-workflow-templates==0.7.64
comfyui-workflow-templates==0.7.69
Comment on lines 5 to +6
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🔴 Critical

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
# Search for references to comfyui-frontend-package in the codebase
rg -n 'comfyui-frontend-package' --type-list | head -5

# If the above works, search recursively
rg -n 'comfyui-frontend-package' -C 2

Repository: Comfy-Org/desktop

Length of output: 776


🏁 Script executed:

#!/bin/bash
# Check the structure and context around the patch file
cat -n scripts/core-requirements.patch | head -20

Repository: Comfy-Org/desktop

Length of output: 334


🏁 Script executed:

#!/bin/bash
# Look for package.json and check frontend.version reference
fd 'package.json' | head -10

Repository: Comfy-Org/desktop

Length of output: 73


🌐 Web query:

comfyui-workflow-templates 0.7.69 PyPI release

💡 Result:

I couldn't find a PyPI release for comfyui-workflow-templates version 0.7.69. The PyPI project page shows the latest available release (meta package) as 0.7.65 (uploaded Dec 31, 2025), and the official GitHub repo's release history/tags do not list 0.7.69. [1][2]

Sources:

  • PyPI project page for comfyui-workflow-templates. [1]
  • GitHub — Comfy-Org/workflow_templates repository. [2]

🏁 Script executed:

#!/bin/bash
# Examine package.json to find frontend.version reference
cat package.json | grep -A 5 -B 5 'frontend' || echo "No frontend reference found"

Repository: Comfy-Org/desktop

Length of output: 2456


🏁 Script executed:

#!/bin/bash
# Look for any other requirements files or version references
fd 'requirements' -o 'package' -o 'version' | head -20

Repository: Comfy-Org/desktop

Length of output: 194


🏁 Script executed:

#!/bin/bash
# Check if there are any comments or context in the patch file
cat -n scripts/core-requirements.patch

Repository: Comfy-Org/desktop

Length of output: 334


Fix invalid comfyui-workflow-templates version in patch.

The removal of comfyui-frontend-package==1.35.9 appears intentional—package.json still references frontend.version: "1.35.9" and scripts like download-frontend and update:frontend indicate the frontend is now managed through a separate mechanism rather than the pip package. However, the patch references comfyui-workflow-templates==0.7.69, which does not exist. The latest available version on PyPI is 0.7.65 (released Dec 31, 2025), and the GitHub repository has no 0.7.69 release. This will cause installation to fail. Update the version to 0.7.65 or verify the intended version if different.

🤖 Prompt for AI Agents
In @scripts/core-requirements.patch around lines 5 - 6, The patch references a
non-existent package version comfyui-workflow-templates==0.7.69 which will break
installs; update the requirement line in scripts/core-requirements.patch to use
the valid PyPI release comfyui-workflow-templates==0.7.65 (or whichever intended
version after verification) and confirm the removal of
comfyui-frontend-package==1.35.9 aligns with package.json's frontend.version and
the download-frontend / update:frontend scripts so the frontend is still handled
by the separate mechanism.

comfyui-embedded-docs==0.3.1
torch
Loading