comfy-env 0.0.13__tar.gz → 0.0.14__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.0.13 → comfy_env-0.0.14}/PKG-INFO +1 -1
- {comfy_env-0.0.13 → comfy_env-0.0.14}/pyproject.toml +1 -1
- {comfy_env-0.0.13 → comfy_env-0.0.14}/src/comfy_env/env/manager.py +2 -2
- {comfy_env-0.0.13 → comfy_env-0.0.14}/src/comfy_env/resolver.py +3 -0
- comfy_env-0.0.14/untitled.txt +0 -0
- {comfy_env-0.0.13 → comfy_env-0.0.14}/.github/workflows/publish.yml +0 -0
- {comfy_env-0.0.13 → comfy_env-0.0.14}/.gitignore +0 -0
- {comfy_env-0.0.13 → comfy_env-0.0.14}/CLAUDE.md +0 -0
- {comfy_env-0.0.13 → comfy_env-0.0.14}/CRITICISM.md +0 -0
- {comfy_env-0.0.13 → comfy_env-0.0.14}/LICENSE +0 -0
- {comfy_env-0.0.13 → comfy_env-0.0.14}/README.md +0 -0
- {comfy_env-0.0.13 → comfy_env-0.0.14}/examples/basic_node/__init__.py +0 -0
- {comfy_env-0.0.13 → comfy_env-0.0.14}/examples/basic_node/comfy-env.toml +0 -0
- {comfy_env-0.0.13 → comfy_env-0.0.14}/examples/basic_node/nodes.py +0 -0
- {comfy_env-0.0.13 → comfy_env-0.0.14}/examples/basic_node/worker.py +0 -0
- {comfy_env-0.0.13 → comfy_env-0.0.14}/examples/decorator_node/__init__.py +0 -0
- {comfy_env-0.0.13 → comfy_env-0.0.14}/examples/decorator_node/nodes.py +0 -0
- {comfy_env-0.0.13 → comfy_env-0.0.14}/src/comfy_env/__init__.py +0 -0
- {comfy_env-0.0.13 → comfy_env-0.0.14}/src/comfy_env/cli.py +0 -0
- {comfy_env-0.0.13 → comfy_env-0.0.14}/src/comfy_env/decorator.py +0 -0
- {comfy_env-0.0.13 → comfy_env-0.0.14}/src/comfy_env/env/__init__.py +0 -0
- {comfy_env-0.0.13 → comfy_env-0.0.14}/src/comfy_env/env/config.py +0 -0
- {comfy_env-0.0.13 → comfy_env-0.0.14}/src/comfy_env/env/config_file.py +0 -0
- {comfy_env-0.0.13 → comfy_env-0.0.14}/src/comfy_env/env/detection.py +0 -0
- {comfy_env-0.0.13 → comfy_env-0.0.14}/src/comfy_env/env/platform/__init__.py +0 -0
- {comfy_env-0.0.13 → comfy_env-0.0.14}/src/comfy_env/env/platform/base.py +0 -0
- {comfy_env-0.0.13 → comfy_env-0.0.14}/src/comfy_env/env/platform/darwin.py +0 -0
- {comfy_env-0.0.13 → comfy_env-0.0.14}/src/comfy_env/env/platform/linux.py +0 -0
- {comfy_env-0.0.13 → comfy_env-0.0.14}/src/comfy_env/env/platform/windows.py +0 -0
- {comfy_env-0.0.13 → comfy_env-0.0.14}/src/comfy_env/env/security.py +0 -0
- {comfy_env-0.0.13 → comfy_env-0.0.14}/src/comfy_env/errors.py +0 -0
- {comfy_env-0.0.13 → comfy_env-0.0.14}/src/comfy_env/install.py +0 -0
- {comfy_env-0.0.13 → comfy_env-0.0.14}/src/comfy_env/ipc/__init__.py +0 -0
- {comfy_env-0.0.13 → comfy_env-0.0.14}/src/comfy_env/ipc/bridge.py +0 -0
- {comfy_env-0.0.13 → comfy_env-0.0.14}/src/comfy_env/ipc/protocol.py +0 -0
- {comfy_env-0.0.13 → comfy_env-0.0.14}/src/comfy_env/ipc/tensor.py +0 -0
- {comfy_env-0.0.13 → comfy_env-0.0.14}/src/comfy_env/ipc/torch_bridge.py +0 -0
- {comfy_env-0.0.13 → comfy_env-0.0.14}/src/comfy_env/ipc/transport.py +0 -0
- {comfy_env-0.0.13 → comfy_env-0.0.14}/src/comfy_env/ipc/worker.py +0 -0
- {comfy_env-0.0.13 → comfy_env-0.0.14}/src/comfy_env/registry.py +0 -0
- {comfy_env-0.0.13 → comfy_env-0.0.14}/src/comfy_env/stubs/__init__.py +0 -0
- {comfy_env-0.0.13 → comfy_env-0.0.14}/src/comfy_env/stubs/folder_paths.py +0 -0
- {comfy_env-0.0.13 → comfy_env-0.0.14}/src/comfy_env/wheel_sources.yml +0 -0
- {comfy_env-0.0.13 → comfy_env-0.0.14}/src/comfy_env/workers/__init__.py +0 -0
- {comfy_env-0.0.13 → comfy_env-0.0.14}/src/comfy_env/workers/base.py +0 -0
- {comfy_env-0.0.13 → comfy_env-0.0.14}/src/comfy_env/workers/pool.py +0 -0
- {comfy_env-0.0.13 → comfy_env-0.0.14}/src/comfy_env/workers/tensor_utils.py +0 -0
- {comfy_env-0.0.13 → comfy_env-0.0.14}/src/comfy_env/workers/torch_mp.py +0 -0
- {comfy_env-0.0.13 → comfy_env-0.0.14}/src/comfy_env/workers/venv.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: comfy-env
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.14
|
|
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
|
|
@@ -475,7 +475,7 @@ class IsolatedEnvManager:
|
|
|
475
475
|
url_template = source["url_template"]
|
|
476
476
|
url = self._substitute_template(url_template, vars_dict)
|
|
477
477
|
|
|
478
|
-
self.log(f" Trying {source.get('name', 'unknown')}: {url
|
|
478
|
+
self.log(f" Trying {source.get('name', 'unknown')}: {url}")
|
|
479
479
|
result = subprocess.run(
|
|
480
480
|
pip_args + ["--no-deps", url],
|
|
481
481
|
capture_output=True, text=True,
|
|
@@ -484,7 +484,7 @@ class IsolatedEnvManager:
|
|
|
484
484
|
if result.returncode == 0:
|
|
485
485
|
return # Success!
|
|
486
486
|
|
|
487
|
-
errors.append(f"{source.get('name', 'unknown')}: {result.stderr
|
|
487
|
+
errors.append(f"{source.get('name', 'unknown')}: {result.stderr.strip()}")
|
|
488
488
|
|
|
489
489
|
# All sources failed
|
|
490
490
|
raise RuntimeError(
|
|
@@ -137,11 +137,14 @@ class RuntimeEnv:
|
|
|
137
137
|
"py_version": self.python_version,
|
|
138
138
|
"py_short": self.python_short,
|
|
139
139
|
"py_minor": py_minor,
|
|
140
|
+
"py_tag": f"cp{self.python_short}", # e.g., cp310, cp311
|
|
140
141
|
}
|
|
141
142
|
|
|
142
143
|
if self.cuda_version:
|
|
143
144
|
result["cuda_version"] = self.cuda_version
|
|
144
145
|
result["cuda_short"] = self.cuda_short
|
|
146
|
+
# cuda_major: just the major version (e.g., "12" from "12.8")
|
|
147
|
+
result["cuda_major"] = self.cuda_version.split(".")[0]
|
|
145
148
|
|
|
146
149
|
if self.torch_version:
|
|
147
150
|
result["torch_version"] = self.torch_version
|
|
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
|
|
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
|