comfy-env 0.0.2__tar.gz → 0.0.3__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.2 → comfy_env-0.0.3}/PKG-INFO +2 -1
- {comfy_env-0.0.2 → comfy_env-0.0.3}/pyproject.toml +2 -1
- {comfy_env-0.0.2 → comfy_env-0.0.3}/src/comfy_env/__init__.py +1 -1
- {comfy_env-0.0.2 → comfy_env-0.0.3}/.github/workflows/publish.yml +0 -0
- {comfy_env-0.0.2 → comfy_env-0.0.3}/.gitignore +0 -0
- {comfy_env-0.0.2 → comfy_env-0.0.3}/CLAUDE.md +0 -0
- {comfy_env-0.0.2 → comfy_env-0.0.3}/CRITICISM.md +0 -0
- {comfy_env-0.0.2 → comfy_env-0.0.3}/LICENSE +0 -0
- {comfy_env-0.0.2 → comfy_env-0.0.3}/README.md +0 -0
- {comfy_env-0.0.2 → comfy_env-0.0.3}/examples/basic_node/__init__.py +0 -0
- {comfy_env-0.0.2 → comfy_env-0.0.3}/examples/basic_node/comfy-env.toml +0 -0
- {comfy_env-0.0.2 → comfy_env-0.0.3}/examples/basic_node/nodes.py +0 -0
- {comfy_env-0.0.2 → comfy_env-0.0.3}/examples/basic_node/worker.py +0 -0
- {comfy_env-0.0.2 → comfy_env-0.0.3}/examples/decorator_node/__init__.py +0 -0
- {comfy_env-0.0.2 → comfy_env-0.0.3}/examples/decorator_node/nodes.py +0 -0
- {comfy_env-0.0.2 → comfy_env-0.0.3}/src/comfy_env/cli.py +0 -0
- {comfy_env-0.0.2 → comfy_env-0.0.3}/src/comfy_env/decorator.py +0 -0
- {comfy_env-0.0.2 → comfy_env-0.0.3}/src/comfy_env/env/__init__.py +0 -0
- {comfy_env-0.0.2 → comfy_env-0.0.3}/src/comfy_env/env/config.py +0 -0
- {comfy_env-0.0.2 → comfy_env-0.0.3}/src/comfy_env/env/config_file.py +0 -0
- {comfy_env-0.0.2 → comfy_env-0.0.3}/src/comfy_env/env/detection.py +0 -0
- {comfy_env-0.0.2 → comfy_env-0.0.3}/src/comfy_env/env/manager.py +0 -0
- {comfy_env-0.0.2 → comfy_env-0.0.3}/src/comfy_env/env/platform/__init__.py +0 -0
- {comfy_env-0.0.2 → comfy_env-0.0.3}/src/comfy_env/env/platform/base.py +0 -0
- {comfy_env-0.0.2 → comfy_env-0.0.3}/src/comfy_env/env/platform/darwin.py +0 -0
- {comfy_env-0.0.2 → comfy_env-0.0.3}/src/comfy_env/env/platform/linux.py +0 -0
- {comfy_env-0.0.2 → comfy_env-0.0.3}/src/comfy_env/env/platform/windows.py +0 -0
- {comfy_env-0.0.2 → comfy_env-0.0.3}/src/comfy_env/env/security.py +0 -0
- {comfy_env-0.0.2 → comfy_env-0.0.3}/src/comfy_env/errors.py +0 -0
- {comfy_env-0.0.2 → comfy_env-0.0.3}/src/comfy_env/install.py +0 -0
- {comfy_env-0.0.2 → comfy_env-0.0.3}/src/comfy_env/ipc/__init__.py +0 -0
- {comfy_env-0.0.2 → comfy_env-0.0.3}/src/comfy_env/ipc/bridge.py +0 -0
- {comfy_env-0.0.2 → comfy_env-0.0.3}/src/comfy_env/ipc/protocol.py +0 -0
- {comfy_env-0.0.2 → comfy_env-0.0.3}/src/comfy_env/ipc/tensor.py +0 -0
- {comfy_env-0.0.2 → comfy_env-0.0.3}/src/comfy_env/ipc/torch_bridge.py +0 -0
- {comfy_env-0.0.2 → comfy_env-0.0.3}/src/comfy_env/ipc/transport.py +0 -0
- {comfy_env-0.0.2 → comfy_env-0.0.3}/src/comfy_env/ipc/worker.py +0 -0
- {comfy_env-0.0.2 → comfy_env-0.0.3}/src/comfy_env/registry.py +0 -0
- {comfy_env-0.0.2 → comfy_env-0.0.3}/src/comfy_env/resolver.py +0 -0
- {comfy_env-0.0.2 → comfy_env-0.0.3}/src/comfy_env/runner.py +0 -0
- {comfy_env-0.0.2 → comfy_env-0.0.3}/src/comfy_env/stubs/__init__.py +0 -0
- {comfy_env-0.0.2 → comfy_env-0.0.3}/src/comfy_env/stubs/folder_paths.py +0 -0
- {comfy_env-0.0.2 → comfy_env-0.0.3}/src/comfy_env/workers/__init__.py +0 -0
- {comfy_env-0.0.2 → comfy_env-0.0.3}/src/comfy_env/workers/base.py +0 -0
- {comfy_env-0.0.2 → comfy_env-0.0.3}/src/comfy_env/workers/pool.py +0 -0
- {comfy_env-0.0.2 → comfy_env-0.0.3}/src/comfy_env/workers/tensor_utils.py +0 -0
- {comfy_env-0.0.2 → comfy_env-0.0.3}/src/comfy_env/workers/torch_mp.py +0 -0
- {comfy_env-0.0.2 → comfy_env-0.0.3}/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.3
|
|
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
|
|
@@ -18,6 +18,7 @@ Classifier: Programming Language :: Python :: 3.12
|
|
|
18
18
|
Classifier: Programming Language :: Python :: 3.13
|
|
19
19
|
Requires-Python: >=3.10
|
|
20
20
|
Requires-Dist: tomli>=2.0.0; python_version < '3.11'
|
|
21
|
+
Requires-Dist: uv>=0.4.0
|
|
21
22
|
Provides-Extra: dev
|
|
22
23
|
Requires-Dist: mypy; extra == 'dev'
|
|
23
24
|
Requires-Dist: pytest; extra == 'dev'
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "comfy-env"
|
|
3
|
-
version = "0.0.
|
|
3
|
+
version = "0.0.3"
|
|
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"}
|
|
@@ -20,6 +20,7 @@ classifiers = [
|
|
|
20
20
|
]
|
|
21
21
|
dependencies = [
|
|
22
22
|
"tomli>=2.0.0; python_version < '3.11'", # TOML parsing (built-in tomllib for 3.11+)
|
|
23
|
+
"uv>=0.4.0", # Fast Python package installer and venv creator
|
|
23
24
|
]
|
|
24
25
|
|
|
25
26
|
[project.optional-dependencies]
|
|
@@ -40,7 +40,7 @@ This package provides:
|
|
|
40
40
|
The @isolated decorator and WorkerBridge are still available.
|
|
41
41
|
"""
|
|
42
42
|
|
|
43
|
-
__version__ = "0.0.
|
|
43
|
+
__version__ = "0.0.3"
|
|
44
44
|
|
|
45
45
|
from .env.config import IsolatedEnv, EnvManagerConfig, LocalConfig, NodeReq
|
|
46
46
|
from .env.config_file import (
|
|
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
|