comfy-env 0.0.40__tar.gz → 0.0.41__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.40 → comfy_env-0.0.41}/PKG-INFO +1 -1
- {comfy_env-0.0.40 → comfy_env-0.0.41}/pyproject.toml +1 -1
- {comfy_env-0.0.40 → comfy_env-0.0.41}/src/comfy_env/wheel_sources.yml +7 -0
- {comfy_env-0.0.40 → comfy_env-0.0.41}/.github/workflows/publish.yml +0 -0
- {comfy_env-0.0.40 → comfy_env-0.0.41}/.gitignore +0 -0
- {comfy_env-0.0.40 → comfy_env-0.0.41}/LICENSE +0 -0
- {comfy_env-0.0.40 → comfy_env-0.0.41}/README.md +0 -0
- {comfy_env-0.0.40 → comfy_env-0.0.41}/src/comfy_env/__init__.py +0 -0
- {comfy_env-0.0.40 → comfy_env-0.0.41}/src/comfy_env/cli.py +0 -0
- {comfy_env-0.0.40 → comfy_env-0.0.41}/src/comfy_env/decorator.py +0 -0
- {comfy_env-0.0.40 → comfy_env-0.0.41}/src/comfy_env/env/__init__.py +0 -0
- {comfy_env-0.0.40 → comfy_env-0.0.41}/src/comfy_env/env/config.py +0 -0
- {comfy_env-0.0.40 → comfy_env-0.0.41}/src/comfy_env/env/config_file.py +0 -0
- {comfy_env-0.0.40 → comfy_env-0.0.41}/src/comfy_env/env/cuda_gpu_detection.py +0 -0
- {comfy_env-0.0.40 → comfy_env-0.0.41}/src/comfy_env/env/manager.py +0 -0
- {comfy_env-0.0.40 → comfy_env-0.0.41}/src/comfy_env/env/platform/__init__.py +0 -0
- {comfy_env-0.0.40 → comfy_env-0.0.41}/src/comfy_env/env/platform/base.py +0 -0
- {comfy_env-0.0.40 → comfy_env-0.0.41}/src/comfy_env/env/platform/darwin.py +0 -0
- {comfy_env-0.0.40 → comfy_env-0.0.41}/src/comfy_env/env/platform/linux.py +0 -0
- {comfy_env-0.0.40 → comfy_env-0.0.41}/src/comfy_env/env/platform/windows.py +0 -0
- {comfy_env-0.0.40 → comfy_env-0.0.41}/src/comfy_env/env/security.py +0 -0
- {comfy_env-0.0.40 → comfy_env-0.0.41}/src/comfy_env/errors.py +0 -0
- {comfy_env-0.0.40 → comfy_env-0.0.41}/src/comfy_env/index_resolver.py +0 -0
- {comfy_env-0.0.40 → comfy_env-0.0.41}/src/comfy_env/install.py +0 -0
- {comfy_env-0.0.40 → comfy_env-0.0.41}/src/comfy_env/ipc/__init__.py +0 -0
- {comfy_env-0.0.40 → comfy_env-0.0.41}/src/comfy_env/ipc/bridge.py +0 -0
- {comfy_env-0.0.40 → comfy_env-0.0.41}/src/comfy_env/ipc/protocol.py +0 -0
- {comfy_env-0.0.40 → comfy_env-0.0.41}/src/comfy_env/ipc/tensor.py +0 -0
- {comfy_env-0.0.40 → comfy_env-0.0.41}/src/comfy_env/ipc/torch_bridge.py +0 -0
- {comfy_env-0.0.40 → comfy_env-0.0.41}/src/comfy_env/ipc/transport.py +0 -0
- {comfy_env-0.0.40 → comfy_env-0.0.41}/src/comfy_env/ipc/worker.py +0 -0
- {comfy_env-0.0.40 → comfy_env-0.0.41}/src/comfy_env/nodes.py +0 -0
- {comfy_env-0.0.40 → comfy_env-0.0.41}/src/comfy_env/pixi.py +0 -0
- {comfy_env-0.0.40 → comfy_env-0.0.41}/src/comfy_env/registry.py +0 -0
- {comfy_env-0.0.40 → comfy_env-0.0.41}/src/comfy_env/resolver.py +0 -0
- {comfy_env-0.0.40 → comfy_env-0.0.41}/src/comfy_env/stubs/__init__.py +0 -0
- {comfy_env-0.0.40 → comfy_env-0.0.41}/src/comfy_env/stubs/comfy/__init__.py +0 -0
- {comfy_env-0.0.40 → comfy_env-0.0.41}/src/comfy_env/stubs/comfy/model_management.py +0 -0
- {comfy_env-0.0.40 → comfy_env-0.0.41}/src/comfy_env/stubs/comfy/utils.py +0 -0
- {comfy_env-0.0.40 → comfy_env-0.0.41}/src/comfy_env/stubs/folder_paths.py +0 -0
- {comfy_env-0.0.40 → comfy_env-0.0.41}/src/comfy_env/workers/__init__.py +0 -0
- {comfy_env-0.0.40 → comfy_env-0.0.41}/src/comfy_env/workers/base.py +0 -0
- {comfy_env-0.0.40 → comfy_env-0.0.41}/src/comfy_env/workers/pool.py +0 -0
- {comfy_env-0.0.40 → comfy_env-0.0.41}/src/comfy_env/workers/tensor_utils.py +0 -0
- {comfy_env-0.0.40 → comfy_env-0.0.41}/src/comfy_env/workers/torch_mp.py +0 -0
- {comfy_env-0.0.40 → comfy_env-0.0.41}/src/comfy_env/workers/venv.py +0 -0
- {comfy_env-0.0.40 → comfy_env-0.0.41}/untitled.txt +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.41
|
|
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
|
|
@@ -123,6 +123,13 @@ packages:
|
|
|
123
123
|
wheel_template: "https://pozzettiandrea.github.io/cuda-wheels/lietorch/lietorch-{version}%2Bcu{cuda_short}torch{torch_mm}-{py_tag}-{py_tag}-{platform}.whl"
|
|
124
124
|
description: Lie group operations for PyTorch (DPVO dependency)
|
|
125
125
|
|
|
126
|
+
dpvo-cuda:
|
|
127
|
+
method: index
|
|
128
|
+
index_url: "https://pozzettiandrea.github.io/cuda-wheels"
|
|
129
|
+
wheel_template: "https://pozzettiandrea.github.io/cuda-wheels/dpvo_cuda/dpvo_cuda-{version}%2Bcu{cuda_short}torch{torch_mm}-{py_tag}-{py_tag}-{platform}.whl"
|
|
130
|
+
default_version: "1.0.0"
|
|
131
|
+
description: DPVO CUDA extensions (cuda_corr, cuda_ba, lietorch_backends)
|
|
132
|
+
|
|
126
133
|
# ===========================================================================
|
|
127
134
|
# spconv - PyPI with CUDA-versioned package names
|
|
128
135
|
# ===========================================================================
|
|
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
|