comfy-env 0.1.25__tar.gz → 0.1.26__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.
- {comfy_env-0.1.25 → comfy_env-0.1.26}/PKG-INFO +2 -1
- {comfy_env-0.1.25 → comfy_env-0.1.26}/pyproject.toml +2 -1
- {comfy_env-0.1.25 → comfy_env-0.1.26}/src/comfy_env/install.py +2 -2
- {comfy_env-0.1.25 → comfy_env-0.1.26}/.github/workflows/ci.yml +0 -0
- {comfy_env-0.1.25 → comfy_env-0.1.26}/.github/workflows/publish.yml +0 -0
- {comfy_env-0.1.25 → comfy_env-0.1.26}/.gitignore +0 -0
- {comfy_env-0.1.25 → comfy_env-0.1.26}/LICENSE +0 -0
- {comfy_env-0.1.25 → comfy_env-0.1.26}/README.md +0 -0
- {comfy_env-0.1.25 → comfy_env-0.1.26}/src/comfy_env/__init__.py +0 -0
- {comfy_env-0.1.25 → comfy_env-0.1.26}/src/comfy_env/cli.py +0 -0
- {comfy_env-0.1.25 → comfy_env-0.1.26}/src/comfy_env/config/__init__.py +0 -0
- {comfy_env-0.1.25 → comfy_env-0.1.26}/src/comfy_env/config/parser.py +0 -0
- {comfy_env-0.1.25 → comfy_env-0.1.26}/src/comfy_env/config/types.py +0 -0
- {comfy_env-0.1.25 → comfy_env-0.1.26}/src/comfy_env/detection/__init__.py +0 -0
- {comfy_env-0.1.25 → comfy_env-0.1.26}/src/comfy_env/detection/cuda.py +0 -0
- {comfy_env-0.1.25 → comfy_env-0.1.26}/src/comfy_env/detection/gpu.py +0 -0
- {comfy_env-0.1.25 → comfy_env-0.1.26}/src/comfy_env/detection/platform.py +0 -0
- {comfy_env-0.1.25 → comfy_env-0.1.26}/src/comfy_env/detection/runtime.py +0 -0
- {comfy_env-0.1.25 → comfy_env-0.1.26}/src/comfy_env/environment/__init__.py +0 -0
- {comfy_env-0.1.25 → comfy_env-0.1.26}/src/comfy_env/environment/cache.py +0 -0
- {comfy_env-0.1.25 → comfy_env-0.1.26}/src/comfy_env/environment/libomp.py +0 -0
- {comfy_env-0.1.25 → comfy_env-0.1.26}/src/comfy_env/environment/paths.py +0 -0
- {comfy_env-0.1.25 → comfy_env-0.1.26}/src/comfy_env/environment/setup.py +0 -0
- {comfy_env-0.1.25 → comfy_env-0.1.26}/src/comfy_env/isolation/__init__.py +0 -0
- {comfy_env-0.1.25 → comfy_env-0.1.26}/src/comfy_env/isolation/tensor_utils.py +0 -0
- {comfy_env-0.1.25 → comfy_env-0.1.26}/src/comfy_env/isolation/workers/__init__.py +0 -0
- {comfy_env-0.1.25 → comfy_env-0.1.26}/src/comfy_env/isolation/workers/base.py +0 -0
- {comfy_env-0.1.25 → comfy_env-0.1.26}/src/comfy_env/isolation/workers/subprocess.py +0 -0
- {comfy_env-0.1.25 → comfy_env-0.1.26}/src/comfy_env/isolation/wrap.py +0 -0
- {comfy_env-0.1.25 → comfy_env-0.1.26}/src/comfy_env/packages/__init__.py +0 -0
- {comfy_env-0.1.25 → comfy_env-0.1.26}/src/comfy_env/packages/apt.py +0 -0
- {comfy_env-0.1.25 → comfy_env-0.1.26}/src/comfy_env/packages/cuda_wheels.py +0 -0
- {comfy_env-0.1.25 → comfy_env-0.1.26}/src/comfy_env/packages/node_dependencies.py +0 -0
- {comfy_env-0.1.25 → comfy_env-0.1.26}/src/comfy_env/packages/pixi.py +0 -0
- {comfy_env-0.1.25 → comfy_env-0.1.26}/src/comfy_env/packages/toml_generator.py +0 -0
- {comfy_env-0.1.25 → comfy_env-0.1.26}/src/comfy_env/templates/comfy-env-instructions.txt +0 -0
- {comfy_env-0.1.25 → comfy_env-0.1.26}/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.26
|
|
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
|
|
@@ -19,6 +19,7 @@ Classifier: Programming Language :: Python :: 3.13
|
|
|
19
19
|
Requires-Python: >=3.10
|
|
20
20
|
Requires-Dist: numpy
|
|
21
21
|
Requires-Dist: pip>=21.0
|
|
22
|
+
Requires-Dist: pixi>=0.40.0
|
|
22
23
|
Requires-Dist: tomli-w>=1.0.0
|
|
23
24
|
Requires-Dist: tomli>=2.0.0
|
|
24
25
|
Requires-Dist: uv>=0.4.0
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "comfy-env"
|
|
3
|
-
version = "0.1.
|
|
3
|
+
version = "0.1.26"
|
|
4
4
|
description = "Environment management for ComfyUI custom nodes - CUDA wheel resolution and process isolation"
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
license = {text = "MIT"}
|
|
@@ -22,6 +22,7 @@ dependencies = [
|
|
|
22
22
|
"tomli>=2.0.0",
|
|
23
23
|
"tomli-w>=1.0.0",
|
|
24
24
|
"uv>=0.4.0",
|
|
25
|
+
"pixi>=0.40.0",
|
|
25
26
|
"pip>=21.0",
|
|
26
27
|
"numpy",
|
|
27
28
|
]
|
|
@@ -151,7 +151,7 @@ def _install_via_pixi(cfg: ComfyEnvConfig, node_dir: Path, log: Callable[[str],
|
|
|
151
151
|
log("Running pixi install...")
|
|
152
152
|
result = subprocess.run([str(pixi_path), "install"], cwd=node_dir, capture_output=True, text=True)
|
|
153
153
|
if result.returncode != 0:
|
|
154
|
-
raise RuntimeError(f"pixi install failed: {result.stderr}")
|
|
154
|
+
raise RuntimeError(f"pixi install failed:\nstderr: {result.stderr}\nstdout: {result.stdout}")
|
|
155
155
|
|
|
156
156
|
if cfg.cuda_packages and cuda_version:
|
|
157
157
|
log(f"Installing CUDA packages...")
|
|
@@ -171,7 +171,7 @@ def _install_via_pixi(cfg: ComfyEnvConfig, node_dir: Path, log: Callable[[str],
|
|
|
171
171
|
result = subprocess.run([str(python_path), "-m", "pip", "install", "--no-deps", "--no-cache-dir", wheel_url],
|
|
172
172
|
capture_output=True, text=True)
|
|
173
173
|
if result.returncode != 0:
|
|
174
|
-
raise RuntimeError(f"Failed: {result.stderr}")
|
|
174
|
+
raise RuntimeError(f"Failed to install {package}:\nstderr: {result.stderr}\nstdout: {result.stdout}")
|
|
175
175
|
|
|
176
176
|
# Find config file for marker
|
|
177
177
|
config_path = node_dir / CONFIG_FILE_NAME
|
|
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
|