Skip to content

Commit

Permalink
fixed: add uv to requirements.txt
Browse files Browse the repository at this point in the history
fixed: invalid interpretation of use_uv config item on prestartup_script

#1511
  • Loading branch information
ltdrdata committed Feb 3, 2025
1 parent ced93b0 commit 816a53a
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion glob/manager_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
from node_package import InstalledNodePackage


version_code = [3, 17, 6]
version_code = [3, 17, 7]
version_str = f"V{version_code[0]}.{version_code[1]}" + (f'.{version_code[2]}' if len(version_code) > 2 else '')


Expand Down
2 changes: 1 addition & 1 deletion prestartup_script.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def read_config():

def read_uv_mode():
if 'use_uv' in default_conf:
manager_util.use_uv = default_conf['use_uv']
manager_util.use_uv = default_conf['use_uv'].lower() == 'true'

def check_file_logging():
global enable_file_logging
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[project]
name = "comfyui-manager"
description = "ComfyUI-Manager provides features to install and manage custom nodes for ComfyUI, as well as various functionalities to assist with ComfyUI."
version = "3.17.6"
version = "3.17.7"
license = { file = "LICENSE.txt" }
dependencies = ["GitPython", "PyGithub", "matrix-client==0.4.0", "transformers", "huggingface-hub>0.20", "typer", "rich", "typing-extensions"]

Expand Down
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@ huggingface-hub>0.20
typer
rich
typing-extensions
toml
toml
uv

0 comments on commit 816a53a

Please sign in to comment.