Merge branch 'comfyanonymous:master' into master

This commit is contained in:
patientx 2025-05-03 15:16:22 +03:00 committed by GitHub
commit e7a0cd4063
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 8 additions and 3 deletions

View File

@ -63,7 +63,12 @@ except:
print("checking out master branch") # noqa: T201
branch = repo.lookup_branch('master')
if branch is None:
ref = repo.lookup_reference('refs/remotes/origin/master')
try:
ref = repo.lookup_reference('refs/remotes/origin/master')
except:
print("pulling.") # noqa: T201
pull(repo)
ref = repo.lookup_reference('refs/remotes/origin/master')
repo.checkout(ref)
branch = repo.lookup_branch('master')
if branch is None:

View File

@ -1,3 +1,3 @@
# This file is automatically generated by the build process when version is
# updated in pyproject.toml.
__version__ = "0.3.30"
__version__ = "0.3.31"

View File

@ -1,6 +1,6 @@
[project]
name = "ComfyUI"
version = "0.3.30"
version = "0.3.31"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.9"