comfy-env 0.1.23__tar.gz → 0.1.24__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of comfy-env might be problematic. Click here for more details.
- {comfy_env-0.1.23 → comfy_env-0.1.24}/PKG-INFO +1 -1
- {comfy_env-0.1.23 → comfy_env-0.1.24}/pyproject.toml +1 -1
- {comfy_env-0.1.23 → comfy_env-0.1.24}/src/comfy_env/packages/apt.py +25 -19
- {comfy_env-0.1.23 → comfy_env-0.1.24}/.github/workflows/ci.yml +0 -0
- {comfy_env-0.1.23 → comfy_env-0.1.24}/.github/workflows/publish.yml +0 -0
- {comfy_env-0.1.23 → comfy_env-0.1.24}/.gitignore +0 -0
- {comfy_env-0.1.23 → comfy_env-0.1.24}/LICENSE +0 -0
- {comfy_env-0.1.23 → comfy_env-0.1.24}/README.md +0 -0
- {comfy_env-0.1.23 → comfy_env-0.1.24}/src/comfy_env/__init__.py +0 -0
- {comfy_env-0.1.23 → comfy_env-0.1.24}/src/comfy_env/cli.py +0 -0
- {comfy_env-0.1.23 → comfy_env-0.1.24}/src/comfy_env/config/__init__.py +0 -0
- {comfy_env-0.1.23 → comfy_env-0.1.24}/src/comfy_env/config/parser.py +0 -0
- {comfy_env-0.1.23 → comfy_env-0.1.24}/src/comfy_env/config/types.py +0 -0
- {comfy_env-0.1.23 → comfy_env-0.1.24}/src/comfy_env/detection/__init__.py +0 -0
- {comfy_env-0.1.23 → comfy_env-0.1.24}/src/comfy_env/detection/cuda.py +0 -0
- {comfy_env-0.1.23 → comfy_env-0.1.24}/src/comfy_env/detection/gpu.py +0 -0
- {comfy_env-0.1.23 → comfy_env-0.1.24}/src/comfy_env/detection/platform.py +0 -0
- {comfy_env-0.1.23 → comfy_env-0.1.24}/src/comfy_env/detection/runtime.py +0 -0
- {comfy_env-0.1.23 → comfy_env-0.1.24}/src/comfy_env/environment/__init__.py +0 -0
- {comfy_env-0.1.23 → comfy_env-0.1.24}/src/comfy_env/environment/cache.py +0 -0
- {comfy_env-0.1.23 → comfy_env-0.1.24}/src/comfy_env/environment/libomp.py +0 -0
- {comfy_env-0.1.23 → comfy_env-0.1.24}/src/comfy_env/environment/paths.py +0 -0
- {comfy_env-0.1.23 → comfy_env-0.1.24}/src/comfy_env/environment/setup.py +0 -0
- {comfy_env-0.1.23 → comfy_env-0.1.24}/src/comfy_env/install.py +0 -0
- {comfy_env-0.1.23 → comfy_env-0.1.24}/src/comfy_env/isolation/__init__.py +0 -0
- {comfy_env-0.1.23 → comfy_env-0.1.24}/src/comfy_env/isolation/tensor_utils.py +0 -0
- {comfy_env-0.1.23 → comfy_env-0.1.24}/src/comfy_env/isolation/workers/__init__.py +0 -0
- {comfy_env-0.1.23 → comfy_env-0.1.24}/src/comfy_env/isolation/workers/base.py +0 -0
- {comfy_env-0.1.23 → comfy_env-0.1.24}/src/comfy_env/isolation/workers/subprocess.py +0 -0
- {comfy_env-0.1.23 → comfy_env-0.1.24}/src/comfy_env/isolation/wrap.py +0 -0
- {comfy_env-0.1.23 → comfy_env-0.1.24}/src/comfy_env/packages/__init__.py +0 -0
- {comfy_env-0.1.23 → comfy_env-0.1.24}/src/comfy_env/packages/cuda_wheels.py +0 -0
- {comfy_env-0.1.23 → comfy_env-0.1.24}/src/comfy_env/packages/node_dependencies.py +0 -0
- {comfy_env-0.1.23 → comfy_env-0.1.24}/src/comfy_env/packages/pixi.py +0 -0
- {comfy_env-0.1.23 → comfy_env-0.1.24}/src/comfy_env/packages/toml_generator.py +0 -0
- {comfy_env-0.1.23 → comfy_env-0.1.24}/src/comfy_env/templates/comfy-env-instructions.txt +0 -0
- {comfy_env-0.1.23 → comfy_env-0.1.24}/src/comfy_env/templates/comfy-env.toml +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: comfy-env
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.24
|
|
4
4
|
Summary: Environment management for ComfyUI custom nodes - CUDA wheel resolution and process isolation
|
|
5
5
|
Project-URL: Homepage, https://github.com/PozzettiAndrea/comfy-env
|
|
6
6
|
Project-URL: Repository, https://github.com/PozzettiAndrea/comfy-env
|
|
@@ -32,29 +32,35 @@ def apt_install(packages: List[str], log: Callable[[str], None] = print) -> bool
|
|
|
32
32
|
else:
|
|
33
33
|
log("[apt] apt-get update succeeded")
|
|
34
34
|
|
|
35
|
-
# Install
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
35
|
+
# Install packages ONE BY ONE so one failure doesn't block others
|
|
36
|
+
installed = []
|
|
37
|
+
failed = []
|
|
38
|
+
for pkg in missing:
|
|
39
|
+
log(f"[apt] Installing: {pkg}")
|
|
40
|
+
result = subprocess.run(
|
|
41
|
+
["sudo", "apt-get", "install", "-y", pkg],
|
|
42
|
+
capture_output=True, text=True
|
|
43
|
+
)
|
|
44
|
+
if result.returncode != 0:
|
|
45
|
+
log(f"[apt] FAILED: {pkg} - {result.stderr.strip()}")
|
|
46
|
+
failed.append(pkg)
|
|
47
|
+
else:
|
|
48
|
+
log(f"[apt] OK: {pkg}")
|
|
49
|
+
installed.append(pkg)
|
|
47
50
|
|
|
48
|
-
|
|
51
|
+
# Summary
|
|
52
|
+
if installed:
|
|
53
|
+
log(f"[apt] Successfully installed: {installed}")
|
|
54
|
+
if failed:
|
|
55
|
+
log(f"[apt] Failed to install: {failed}")
|
|
49
56
|
|
|
50
|
-
# Verify
|
|
51
|
-
still_missing = check_apt_packages(
|
|
57
|
+
# Verify what's actually installed now
|
|
58
|
+
still_missing = check_apt_packages(packages)
|
|
52
59
|
if still_missing:
|
|
53
|
-
log(f"[apt] WARNING: These packages
|
|
54
|
-
return False
|
|
60
|
+
log(f"[apt] WARNING: These packages are not available: {still_missing}")
|
|
55
61
|
|
|
56
|
-
|
|
57
|
-
return
|
|
62
|
+
# Return True if we installed at least something (partial success is OK)
|
|
63
|
+
return len(installed) > 0 or len(missing) == len(failed)
|
|
58
64
|
|
|
59
65
|
|
|
60
66
|
def check_apt_packages(packages: List[str]) -> List[str]:
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|