Skip to content

Commit

Permalink
fix: install script - folder_paths error
Browse files Browse the repository at this point in the history
  • Loading branch information
ltdrdata committed Dec 22, 2024
1 parent 9402ecf commit 21eecb0
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion install.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ def process_wrap(cmd_str, cwd=None, handler=None, env=None):

try:
import platform
import folder_paths
from torchvision.datasets.utils import download_url
import impact.config

Expand Down
2 changes: 1 addition & 1 deletion modules/impact/config.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import configparser
import os

version_code = [8, 1, 4]
version_code = [8, 1, 5]
version = f"V{version_code[0]}.{version_code[1]}" + (f'.{version_code[2]}' if len(version_code) > 2 else '')

dependency_version = 24
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-impact-pack"
description = "This node pack offers various detector nodes and detailer nodes that allow you to configure a workflow that automatically enhances facial details. And provide iterative upscaler."
version = "8.1.4"
version = "8.1.5"
license = { file = "LICENSE.txt" }
dependencies = ["segment-anything", "scikit-image", "piexif", "transformers", "opencv-python-headless", "GitPython", "scipy>=1.11.4"]

Expand Down

0 comments on commit 21eecb0

Please sign in to comment.