comfy-env 0.0.42__py3-none-any.whl → 0.0.43__py3-none-any.whl

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/install.py CHANGED
@@ -310,7 +310,7 @@ def _install_local(
310
310
 
311
311
  cuda_packages = []
312
312
  for pkg, ver in local_config.cuda_packages.items():
313
- if ver:
313
+ if ver and ver != "*":
314
314
  cuda_packages.append(f"{pkg}=={ver}")
315
315
  else:
316
316
  cuda_packages.append(pkg)
@@ -445,6 +445,9 @@ def _pip_install(
445
445
  pip_cmd = _get_pip_command()
446
446
 
447
447
  args = pip_cmd + ["install"]
448
+ # uv requires --system when not in a venv (CI environments)
449
+ if _is_using_uv():
450
+ args.append("--system")
448
451
  if no_deps:
449
452
  args.append("--no-deps")
450
453
  args.extend(packages)
@@ -469,6 +472,11 @@ def _get_pip_command() -> List[str]:
469
472
  return [sys.executable, "-m", "pip"]
470
473
 
471
474
 
475
+ def _is_using_uv() -> bool:
476
+ """Check if we're using uv for pip commands."""
477
+ return shutil.which("uv") is not None
478
+
479
+
472
480
  def verify_installation(
473
481
  packages: List[str],
474
482
  log: Callable[[str], None] = print,
@@ -40,63 +40,74 @@ packages:
40
40
  description: Spline convolutions for PyTorch
41
41
 
42
42
  # ===========================================================================
43
- # PozzettiAndrea cuda-wheels (unified PEP 503 index)
44
- # https://pozzettiandrea.github.io/cuda-wheels
43
+ # PozzettiAndrea cuda-wheels (GitHub releases)
44
+ # https://github.com/PozzettiAndrea/cuda-wheels/releases
45
45
  # ===========================================================================
46
46
  pytorch3d:
47
- wheel_template: "https://pozzettiandrea.github.io/cuda-wheels/pytorch3d/pytorch3d-{version}%2Bcu{cuda_short}torch{torch_mm}-{py_tag}-{py_tag}-{platform}.whl"
47
+ wheel_template: "https://github.com/PozzettiAndrea/cuda-wheels/releases/download/pytorch3d-latest/pytorch3d-{version}%2Bcu{cuda_short}torch{torch_mm}-{py_tag}-{py_tag}-{platform}.whl"
48
48
  default_version: "0.7.9"
49
49
  description: PyTorch3D - 3D deep learning library
50
50
 
51
51
  nvdiffrast:
52
- wheel_template: "https://pozzettiandrea.github.io/cuda-wheels/nvdiffrast/nvdiffrast-{version}%2Bcu{cuda_short}torch{torch_mm}-{py_tag}-{py_tag}-{platform}.whl"
52
+ wheel_template: "https://github.com/PozzettiAndrea/cuda-wheels/releases/download/nvdiffrast-latest/nvdiffrast-{version}%2Bcu{cuda_short}torch{torch_mm}-{py_tag}-{py_tag}-{platform}.whl"
53
+ default_version: "0.4.0"
53
54
  description: NVIDIA differentiable rasterizer
54
55
 
55
56
  cumesh:
56
- wheel_template: "https://pozzettiandrea.github.io/cuda-wheels/cumesh/cumesh-{version}%2Bcu{cuda_short}torch{torch_mm}-{py_tag}-{py_tag}-{platform}.whl"
57
+ wheel_template: "https://github.com/PozzettiAndrea/cuda-wheels/releases/download/cumesh-latest/cumesh-{version}%2Bcu{cuda_short}torch{torch_mm}-{py_tag}-{py_tag}-{platform}.whl"
58
+ default_version: "0.0.1"
57
59
  description: CUDA-accelerated mesh utilities
58
60
 
59
61
  cubvh:
60
- wheel_template: "https://pozzettiandrea.github.io/cuda-wheels/cubvh/cubvh-{version}%2Bcu{cuda_short}torch{torch_mm}-{py_tag}-{py_tag}-{platform}.whl"
62
+ wheel_template: "https://github.com/PozzettiAndrea/cuda-wheels/releases/download/cubvh-latest/cubvh-{version}%2Bcu{cuda_short}torch{torch_mm}-{py_tag}-{py_tag}-{platform}.whl"
63
+ default_version: "0.1.2"
61
64
  description: CUDA BVH acceleration for mesh operations and marching cubes
62
65
 
63
66
  o_voxel:
64
- wheel_template: "https://pozzettiandrea.github.io/cuda-wheels/o-voxel/o_voxel-{version}%2Bcu{cuda_short}torch{torch_mm}-{py_tag}-{py_tag}-{platform}.whl"
67
+ wheel_template: "https://github.com/PozzettiAndrea/cuda-wheels/releases/download/o_voxel-latest/o_voxel-{version}%2Bcu{cuda_short}torch{torch_mm}-{py_tag}-{py_tag}-{platform}.whl"
68
+ default_version: "0.0.1"
65
69
  description: O-Voxel CUDA extension for TRELLIS
66
70
 
67
71
  flex_gemm:
68
- wheel_template: "https://pozzettiandrea.github.io/cuda-wheels/flex-gemm/flex_gemm-{version}%2Bcu{cuda_short}torch{torch_mm}-{py_tag}-{py_tag}-{platform}.whl"
72
+ wheel_template: "https://github.com/PozzettiAndrea/cuda-wheels/releases/download/flex_gemm-latest/flex_gemm-{version}%2Bcu{cuda_short}torch{torch_mm}-{py_tag}-{py_tag}-{platform}.whl"
73
+ default_version: "1.0.0"
69
74
  description: Flexible GEMM operations
70
75
 
71
76
  nvdiffrec_render:
72
- wheel_template: "https://pozzettiandrea.github.io/cuda-wheels/nvdiffrec-render/nvdiffrec_render-{version}%2Bcu{cuda_short}torch{torch_mm}-{py_tag}-{py_tag}-{platform}.whl"
77
+ wheel_template: "https://github.com/PozzettiAndrea/cuda-wheels/releases/download/nvdiffrec_render-latest/nvdiffrec_render-{version}%2Bcu{cuda_short}torch{torch_mm}-{py_tag}-{py_tag}-{platform}.whl"
78
+ default_version: "0.0.1"
73
79
  description: NVDiffRec rendering utilities
74
80
 
75
81
  gsplat:
76
- wheel_template: "https://pozzettiandrea.github.io/cuda-wheels/gsplat/gsplat-{version}%2Bcu{cuda_short}torch{torch_mm}-{py_tag}-{py_tag}-{platform}.whl"
82
+ wheel_template: "https://github.com/PozzettiAndrea/cuda-wheels/releases/download/gsplat-latest/gsplat-{version}%2Bcu{cuda_short}torch{torch_mm}-{py_tag}-{py_tag}-{platform}.whl"
83
+ default_version: "1.5.3"
77
84
  description: Gaussian splatting rasterization
78
85
 
79
86
  cc_torch:
80
- wheel_template: "https://pozzettiandrea.github.io/cuda-wheels/cc-torch/cc_torch-{version}%2Bcu{cuda_short}torch{torch_mm}-{py_tag}-{py_tag}-{platform}.whl"
87
+ wheel_template: "https://github.com/PozzettiAndrea/cuda-wheels/releases/download/cc_torch-latest/cc_torch-{version}%2Bcu{cuda_short}torch{torch_mm}-{py_tag}-{py_tag}-{platform}.whl"
88
+ default_version: "0.2"
81
89
  description: GPU-accelerated connected components
82
90
 
83
91
  torch_generic_nms:
84
- wheel_template: "https://pozzettiandrea.github.io/cuda-wheels/torch-generic-nms/torch_generic_nms-{version}%2Bcu{cuda_short}torch{torch_mm}-{py_tag}-{py_tag}-{platform}.whl"
92
+ wheel_template: "https://github.com/PozzettiAndrea/cuda-wheels/releases/download/torch_generic_nms-latest/torch_generic_nms-{version}%2Bcu{cuda_short}torch{torch_mm}-{py_tag}-{py_tag}-{platform}.whl"
93
+ default_version: "0.1"
85
94
  description: GPU-accelerated Non-Maximum Suppression
86
95
 
87
96
  lietorch:
88
- wheel_template: "https://pozzettiandrea.github.io/cuda-wheels/lietorch/lietorch-{version}%2Bcu{cuda_short}torch{torch_mm}-{py_tag}-{py_tag}-{platform}.whl"
97
+ wheel_template: "https://github.com/PozzettiAndrea/cuda-wheels/releases/download/lietorch-latest/lietorch-{version}%2Bcu{cuda_short}torch{torch_mm}-{py_tag}-{py_tag}-{platform}.whl"
98
+ default_version: "0.3"
89
99
  description: Lie group operations for PyTorch (DPVO dependency)
90
100
 
91
- dpvo-cuda:
92
- 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"
93
- default_version: "1.0.0"
94
- description: DPVO CUDA extensions (cuda_corr, cuda_ba, lietorch_backends)
95
-
96
101
  sageattention:
97
- wheel_template: "https://pozzettiandrea.github.io/cuda-wheels/sageattention/sageattention-{version}%2Bcu{cuda_short}torch{torch_mm}-{py_tag}-{py_tag}-{platform}.whl"
102
+ wheel_template: "https://github.com/PozzettiAndrea/cuda-wheels/releases/download/sageattention-latest/sageattention-{version}%2Bcu{cuda_short}torch{torch_mm}-{py_tag}-{py_tag}-{platform}.whl"
103
+ default_version: "2.2.0"
98
104
  description: SageAttention - 2-5x faster than FlashAttention with quantized kernels
99
105
 
106
+ dpvo_cuda:
107
+ wheel_template: "https://github.com/PozzettiAndrea/cuda-wheels/releases/download/dpvo_cuda-latest/dpvo_cuda-{version}%2Bcu{cuda_short}torch{torch_mm}-{py_tag}-{py_tag}-{platform}.whl"
108
+ default_version: "0.0.0"
109
+ description: DPVO CUDA extensions (cuda_corr, cuda_ba, lietorch_backends) - torch 2.4 only
110
+
100
111
  # ===========================================================================
101
112
  # detectron2 - Facebook's detection library
102
113
  # https://github.com/facebookresearch/detectron2
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: comfy-env
3
- Version: 0.0.42
3
+ Version: 0.0.43
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
@@ -2,7 +2,7 @@ comfy_env/__init__.py,sha256=OQJFNjmArjLcgrfHAFxgDJQFH_IhxibqMXbU5bu_j9Q,3822
2
2
  comfy_env/cli.py,sha256=hZv_oJsmaMoG62Fr2Fjp778P_32BHr4fzS7G4lULSwU,13153
3
3
  comfy_env/decorator.py,sha256=6JCKwLHaZtOLVDexs_gh_-NtS2ZK0V7nGCPqkyeYEAA,16688
4
4
  comfy_env/errors.py,sha256=8hN8NDlo8oBUdapc-eT3ZluigI5VBzfqsSBvQdfWlz4,9943
5
- comfy_env/install.py,sha256=0wz4i19BbNAhfK-bK77LPabheOYhpfBgZFOLWsqKPPY,16329
5
+ comfy_env/install.py,sha256=lKkW55mDLut3zpJOUgjAi-BdLluBRPN-bblONHjo-Ws,16595
6
6
  comfy_env/nodes.py,sha256=CWUe35jU5SKk4ur-SddZePdqWgxJDlxGhpcJiu5pAK4,4354
7
7
  comfy_env/pixi.py,sha256=y25mUDhB3bCqhPMGF0h23Tf8ZHykK4gLJrkvOhsPWmE,14398
8
8
  comfy_env/registry.py,sha256=w-QwvAPFlCrBYRAv4cXkp2zujQPZn8Fk5DUxKCtox8o,3430
@@ -36,9 +36,9 @@ comfy_env/workers/pool.py,sha256=MtjeOWfvHSCockq8j1gfnxIl-t01GSB79T5N4YB82Lg,695
36
36
  comfy_env/workers/tensor_utils.py,sha256=TCuOAjJymrSbkgfyvcKtQ_KbVWTqSwP9VH_bCaFLLq8,6409
37
37
  comfy_env/workers/torch_mp.py,sha256=4YSNPn7hALrvMVbkO4RkTeFTcc0lhfLMk5QTWjY4PHw,22134
38
38
  comfy_env/workers/venv.py,sha256=PmsVOu5i89tBYkGRupo2bjOLPBmk06q4GNUwDWsd9F8,32088
39
- comfy_env/wheel_sources.yml,sha256=B8HIRuakB68oD3bcGBJPnrCnAFkP5FMPaDotUX4-2TY,7278
40
- comfy_env-0.0.42.dist-info/METADATA,sha256=KLuQlF5nxK_DSEoVWlBU7kfaGtiXr26-8jokF_8FmSA,7138
41
- comfy_env-0.0.42.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
42
- comfy_env-0.0.42.dist-info/entry_points.txt,sha256=J4fXeqgxU_YenuW_Zxn_pEL7J-3R0--b6MS5t0QmAr0,49
43
- comfy_env-0.0.42.dist-info/licenses/LICENSE,sha256=E68QZMMpW4P2YKstTZ3QU54HRQO8ecew09XZ4_Vn870,1093
44
- comfy_env-0.0.42.dist-info/RECORD,,
39
+ comfy_env/wheel_sources.yml,sha256=07-ruJ7HHGtXJUs7rDmud8X6OsBcfogZKG6cyU7Gacg,7950
40
+ comfy_env-0.0.43.dist-info/METADATA,sha256=HzyWA3jqZjM9YsoFQEhZkHMTB8b8agepqMvo2YkOQY8,7138
41
+ comfy_env-0.0.43.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
42
+ comfy_env-0.0.43.dist-info/entry_points.txt,sha256=J4fXeqgxU_YenuW_Zxn_pEL7J-3R0--b6MS5t0QmAr0,49
43
+ comfy_env-0.0.43.dist-info/licenses/LICENSE,sha256=E68QZMMpW4P2YKstTZ3QU54HRQO8ecew09XZ4_Vn870,1093
44
+ comfy_env-0.0.43.dist-info/RECORD,,