forked from comfyanonymous/ComfyUI
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/WillReynolds5/ComfyUI
- Loading branch information
Showing
85 changed files
with
2,894 additions
and
425 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,45 +1,48 @@ | ||
name: Bug Report | ||
description: "Something is broken inside of ComfyUI. (Do not use this if you're just having issues and need help, or if the issue relates to a custom node)" | ||
labels: [ "Potential Bug" ] | ||
labels: ["Potential Bug"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Before submitting a **Bug Report**, please ensure the following: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Before submitting a **Bug Report**, please ensure the following: | ||
**1:** You are running the latest version of ComfyUI. | ||
**2:** You have looked at the existing bug reports and made sure this isn't already reported. | ||
**3:** This is an actual bug in ComfyUI, not just a support question and not caused by an custom node. A bug is when you can specify exact steps to replicate what went wrong and others will be able to repeat your steps and see the same issue happen. | ||
- **1:** You are running the latest version of ComfyUI. | ||
- **2:** You have looked at the existing bug reports and made sure this isn't already reported. | ||
- **3:** You confirmed that the bug is not caused by a custom node. You can disable all custom nodes by passing | ||
`--disable-all-custom-nodes` command line argument. | ||
- **4:** This is an actual bug in ComfyUI, not just a support question. A bug is when you can specify exact | ||
steps to replicate what went wrong and others will be able to repeat your steps and see the same issue happen. | ||
If unsure, ask on the [ComfyUI Matrix Space](https://app.element.io/#/room/%23comfyui_space%3Amatrix.org) or the [Comfy Org Discord](https://discord.gg/comfyorg) first. | ||
- type: textarea | ||
attributes: | ||
label: Expected Behavior | ||
description: "What you expected to happen." | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Actual Behavior | ||
description: "What actually happened. Please include a screenshot of the issue if possible." | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Steps to Reproduce | ||
description: "Describe how to reproduce the issue. Please be sure to attach a workflow JSON or PNG, ideally one that doesn't require custom nodes to test. If the bug open happens when certain custom nodes are used, most likely that custom node is what has the bug rather than ComfyUI, in which case it should be reported to the node's author." | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Debug Logs | ||
description: "Please copy the output from your terminal logs here." | ||
render: powershell | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Other | ||
description: "Any other additional information you think might be helpful." | ||
validations: | ||
required: false | ||
If unsure, ask on the [ComfyUI Matrix Space](https://app.element.io/#/room/%23comfyui_space%3Amatrix.org) or the [Comfy Org Discord](https://discord.gg/comfyorg) first. | ||
- type: textarea | ||
attributes: | ||
label: Expected Behavior | ||
description: "What you expected to happen." | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Actual Behavior | ||
description: "What actually happened. Please include a screenshot of the issue if possible." | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Steps to Reproduce | ||
description: "Describe how to reproduce the issue. Please be sure to attach a workflow JSON or PNG, ideally one that doesn't require custom nodes to test. If the bug open happens when certain custom nodes are used, most likely that custom node is what has the bug rather than ComfyUI, in which case it should be reported to the node's author." | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Debug Logs | ||
description: "Please copy the output from your terminal logs here." | ||
render: powershell | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Other | ||
description: "Any other additional information you think might be helpful." | ||
validations: | ||
required: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: Python Linting | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
pylint: | ||
name: Run Pylint | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: 3.x | ||
|
||
- name: Install Pylint | ||
run: pip install pylint | ||
|
||
- name: Run Pylint | ||
run: pylint --rcfile=.pylintrc $(find . -type f -name "*.py") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,109 @@ | ||
|
||
name: "Release Stable Version" | ||
|
||
on: | ||
push: | ||
tags: | ||
- 'v*' | ||
|
||
jobs: | ||
package_comfy_windows: | ||
permissions: | ||
contents: "write" | ||
packages: "write" | ||
pull-requests: "read" | ||
runs-on: windows-latest | ||
strategy: | ||
matrix: | ||
python_version: [3.11.8] | ||
cuda_version: [121] | ||
steps: | ||
- name: Calculate Minor Version | ||
shell: bash | ||
run: | | ||
# Extract the minor version from the Python version | ||
MINOR_VERSION=$(echo "${{ matrix.python_version }}" | cut -d'.' -f2) | ||
echo "MINOR_VERSION=$MINOR_VERSION" >> $GITHUB_ENV | ||
- name: Setup Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: ${{ matrix.python_version }} | ||
|
||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
persist-credentials: false | ||
- shell: bash | ||
run: | | ||
echo "@echo off | ||
call update_comfyui.bat nopause | ||
echo - | ||
echo This will try to update pytorch and all python dependencies. | ||
echo - | ||
echo If you just want to update normally, close this and run update_comfyui.bat instead. | ||
echo - | ||
pause | ||
..\python_embeded\python.exe -s -m pip install --upgrade torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/cu${{ matrix.cuda_version }} -r ../ComfyUI/requirements.txt pygit2 | ||
pause" > update_comfyui_and_python_dependencies.bat | ||
python -m pip wheel --no-cache-dir torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/cu${{ matrix.cuda_version }} -r requirements.txt pygit2 -w ./temp_wheel_dir | ||
python -m pip install --no-cache-dir ./temp_wheel_dir/* | ||
echo installed basic | ||
ls -lah temp_wheel_dir | ||
mv temp_wheel_dir cu${{ matrix.cuda_version }}_python_deps | ||
mv cu${{ matrix.cuda_version }}_python_deps ../ | ||
mv update_comfyui_and_python_dependencies.bat ../ | ||
cd .. | ||
pwd | ||
ls | ||
cp -r ComfyUI ComfyUI_copy | ||
curl https://www.python.org/ftp/python/${{ matrix.python_version }}/python-${{ matrix.python_version }}-embed-amd64.zip -o python_embeded.zip | ||
unzip python_embeded.zip -d python_embeded | ||
cd python_embeded | ||
echo ${{ env.MINOR_VERSION }} | ||
echo 'import site' >> ./python3${{ env.MINOR_VERSION }}._pth | ||
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py | ||
./python.exe get-pip.py | ||
./python.exe --version | ||
echo "Pip version:" | ||
./python.exe -m pip --version | ||
set PATH=$PWD/Scripts:$PATH | ||
echo $PATH | ||
./python.exe -s -m pip install ../cu${{ matrix.cuda_version }}_python_deps/* | ||
sed -i '1i../ComfyUI' ./python3${{ env.MINOR_VERSION }}._pth | ||
cd .. | ||
git clone https://github.com/comfyanonymous/taesd | ||
cp taesd/*.pth ./ComfyUI_copy/models/vae_approx/ | ||
mkdir ComfyUI_windows_portable | ||
mv python_embeded ComfyUI_windows_portable | ||
mv ComfyUI_copy ComfyUI_windows_portable/ComfyUI | ||
cd ComfyUI_windows_portable | ||
mkdir update | ||
cp -r ComfyUI/.ci/update_windows/* ./update/ | ||
cp -r ComfyUI/.ci/windows_base_files/* ./ | ||
cp ../update_comfyui_and_python_dependencies.bat ./update/ | ||
cd .. | ||
"C:\Program Files\7-Zip\7z.exe" a -t7z -m0=lzma2 -mx=8 -mfb=64 -md=32m -ms=on -mf=BCJ2 ComfyUI_windows_portable.7z ComfyUI_windows_portable | ||
mv ComfyUI_windows_portable.7z ComfyUI/ComfyUI_windows_portable_nvidia.7z | ||
cd ComfyUI_windows_portable | ||
python_embeded/python.exe -s ComfyUI/main.py --quick-test-for-ci --cpu | ||
ls | ||
- name: Upload binaries to release | ||
uses: svenstaro/upload-release-action@v2 | ||
with: | ||
repo_token: ${{ secrets.GITHUB_TOKEN }} | ||
file: ComfyUI_windows_portable_nvidia.7z | ||
tag: ${{ github.ref }} | ||
overwrite: true | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,4 +17,5 @@ venv/ | |
!/web/extensions/core/ | ||
/tests-ui/data/object_info.json | ||
/user/ | ||
*.log | ||
*.log | ||
web_custom_versions/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[MESSAGES CONTROL] | ||
disable=all | ||
enable=eval-used |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# Contributing to ComfyUI | ||
|
||
Welcome, and thank you for your interest in contributing to ComfyUI! | ||
|
||
There are several ways in which you can contribute, beyond writing code. The goal of this document is to provide a high-level overview of how you can get involved. | ||
|
||
## Asking Questions | ||
|
||
Have a question? Instead of opening an issue, please ask on [Discord](https://comfy.org/discord) or [Matrix](https://app.element.io/#/room/%23comfyui_space%3Amatrix.org) channels. Our team and the community will help you. | ||
|
||
## Providing Feedback | ||
|
||
Your comments and feedback are welcome, and the development team is available via a handful of different channels. | ||
|
||
See the `#bug-report`, `#feature-request` and `#feedback` channels on Discord. | ||
|
||
## Reporting Issues | ||
|
||
Have you identified a reproducible problem in ComfyUI? Do you have a feature request? We want to hear about it! Here's how you can report your issue as effectively as possible. | ||
|
||
|
||
### Look For an Existing Issue | ||
|
||
Before you create a new issue, please do a search in [open issues](https://github.com/comfyanonymous/ComfyUI/issues) to see if the issue or feature request has already been filed. | ||
|
||
If you find your issue already exists, make relevant comments and add your [reaction](https://github.com/blog/2119-add-reactions-to-pull-requests-issues-and-comments). Use a reaction in place of a "+1" comment: | ||
|
||
* 👍 - upvote | ||
* 👎 - downvote | ||
|
||
If you cannot find an existing issue that describes your bug or feature, create a new issue. We have an issue template in place to organize new issues. | ||
|
||
|
||
### Creating Pull Requests | ||
|
||
* Please refer to the article on [creating pull requests](https://github.com/comfyanonymous/ComfyUI/wiki/How-to-Contribute-Code) and contributing to this project. | ||
|
||
|
||
## Thank You | ||
|
||
Your contributions to open source, large or small, make great projects like this possible. Thank you for taking the time to contribute. |
Oops, something went wrong.