comfy-env 0.1.18__tar.gz → 0.1.19__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.18 → comfy_env-0.1.19}/PKG-INFO +1 -1
- {comfy_env-0.1.18 → comfy_env-0.1.19}/pyproject.toml +1 -1
- {comfy_env-0.1.18 → comfy_env-0.1.19}/src/comfy_env/isolation/workers/subprocess.py +15 -0
- {comfy_env-0.1.18 → comfy_env-0.1.19}/.github/workflows/ci.yml +0 -0
- {comfy_env-0.1.18 → comfy_env-0.1.19}/.github/workflows/publish.yml +0 -0
- {comfy_env-0.1.18 → comfy_env-0.1.19}/.gitignore +0 -0
- {comfy_env-0.1.18 → comfy_env-0.1.19}/LICENSE +0 -0
- {comfy_env-0.1.18 → comfy_env-0.1.19}/README.md +0 -0
- {comfy_env-0.1.18 → comfy_env-0.1.19}/src/comfy_env/__init__.py +0 -0
- {comfy_env-0.1.18 → comfy_env-0.1.19}/src/comfy_env/cli.py +0 -0
- {comfy_env-0.1.18 → comfy_env-0.1.19}/src/comfy_env/config/__init__.py +0 -0
- {comfy_env-0.1.18 → comfy_env-0.1.19}/src/comfy_env/config/parser.py +0 -0
- {comfy_env-0.1.18 → comfy_env-0.1.19}/src/comfy_env/config/types.py +0 -0
- {comfy_env-0.1.18 → comfy_env-0.1.19}/src/comfy_env/detection/__init__.py +0 -0
- {comfy_env-0.1.18 → comfy_env-0.1.19}/src/comfy_env/detection/cuda.py +0 -0
- {comfy_env-0.1.18 → comfy_env-0.1.19}/src/comfy_env/detection/gpu.py +0 -0
- {comfy_env-0.1.18 → comfy_env-0.1.19}/src/comfy_env/detection/platform.py +0 -0
- {comfy_env-0.1.18 → comfy_env-0.1.19}/src/comfy_env/detection/runtime.py +0 -0
- {comfy_env-0.1.18 → comfy_env-0.1.19}/src/comfy_env/environment/__init__.py +0 -0
- {comfy_env-0.1.18 → comfy_env-0.1.19}/src/comfy_env/environment/cache.py +0 -0
- {comfy_env-0.1.18 → comfy_env-0.1.19}/src/comfy_env/environment/libomp.py +0 -0
- {comfy_env-0.1.18 → comfy_env-0.1.19}/src/comfy_env/environment/paths.py +0 -0
- {comfy_env-0.1.18 → comfy_env-0.1.19}/src/comfy_env/environment/setup.py +0 -0
- {comfy_env-0.1.18 → comfy_env-0.1.19}/src/comfy_env/install.py +0 -0
- {comfy_env-0.1.18 → comfy_env-0.1.19}/src/comfy_env/isolation/__init__.py +0 -0
- {comfy_env-0.1.18 → comfy_env-0.1.19}/src/comfy_env/isolation/tensor_utils.py +0 -0
- {comfy_env-0.1.18 → comfy_env-0.1.19}/src/comfy_env/isolation/workers/__init__.py +0 -0
- {comfy_env-0.1.18 → comfy_env-0.1.19}/src/comfy_env/isolation/workers/base.py +0 -0
- {comfy_env-0.1.18 → comfy_env-0.1.19}/src/comfy_env/isolation/workers/mp.py +0 -0
- {comfy_env-0.1.18 → comfy_env-0.1.19}/src/comfy_env/isolation/wrap.py +0 -0
- {comfy_env-0.1.18 → comfy_env-0.1.19}/src/comfy_env/packages/__init__.py +0 -0
- {comfy_env-0.1.18 → comfy_env-0.1.19}/src/comfy_env/packages/apt.py +0 -0
- {comfy_env-0.1.18 → comfy_env-0.1.19}/src/comfy_env/packages/cuda_wheels.py +0 -0
- {comfy_env-0.1.18 → comfy_env-0.1.19}/src/comfy_env/packages/node_dependencies.py +0 -0
- {comfy_env-0.1.18 → comfy_env-0.1.19}/src/comfy_env/packages/pixi.py +0 -0
- {comfy_env-0.1.18 → comfy_env-0.1.19}/src/comfy_env/packages/toml_generator.py +0 -0
- {comfy_env-0.1.18 → comfy_env-0.1.19}/src/comfy_env/templates/comfy-env-instructions.txt +0 -0
- {comfy_env-0.1.18 → comfy_env-0.1.19}/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.19
|
|
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
|
|
@@ -533,6 +533,21 @@ if sys.platform == "win32":
|
|
|
533
533
|
from multiprocessing import shared_memory as shm
|
|
534
534
|
import numpy as np
|
|
535
535
|
|
|
536
|
+
|
|
537
|
+
def _prepare_trimesh_for_pickle(mesh):
|
|
538
|
+
"""
|
|
539
|
+
Prepare a trimesh object for cross-Python-version pickling.
|
|
540
|
+
Strips native extension helpers that cause import errors.
|
|
541
|
+
"""
|
|
542
|
+
mesh = mesh.copy()
|
|
543
|
+
for attr in ('ray', '_ray', 'permutate', 'nearest'):
|
|
544
|
+
try:
|
|
545
|
+
delattr(mesh, attr)
|
|
546
|
+
except AttributeError:
|
|
547
|
+
pass
|
|
548
|
+
return mesh
|
|
549
|
+
|
|
550
|
+
|
|
536
551
|
def _to_shm(obj, registry, visited=None):
|
|
537
552
|
"""Serialize to shared memory. Returns JSON-safe metadata."""
|
|
538
553
|
if visited is None:
|
|
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
|