comfy-env 0.0.70__tar.gz → 0.0.71__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.71/.github/workflows/ci.yml +22 -0
- {comfy_env-0.0.70 → comfy_env-0.0.71}/PKG-INFO +1 -1
- {comfy_env-0.0.70 → comfy_env-0.0.71}/pyproject.toml +1 -1
- {comfy_env-0.0.70 → comfy_env-0.0.71}/src/comfy_env/pixi/core.py +1 -1
- {comfy_env-0.0.70 → comfy_env-0.0.71}/.github/workflows/publish.yml +0 -0
- {comfy_env-0.0.70 → comfy_env-0.0.71}/.gitignore +0 -0
- {comfy_env-0.0.70 → comfy_env-0.0.71}/LICENSE +0 -0
- {comfy_env-0.0.70 → comfy_env-0.0.71}/README.md +0 -0
- {comfy_env-0.0.70 → comfy_env-0.0.71}/src/comfy_env/__init__.py +0 -0
- {comfy_env-0.0.70 → comfy_env-0.0.71}/src/comfy_env/cli.py +0 -0
- {comfy_env-0.0.70 → comfy_env-0.0.71}/src/comfy_env/config/__init__.py +0 -0
- {comfy_env-0.0.70 → comfy_env-0.0.71}/src/comfy_env/config/parser.py +0 -0
- {comfy_env-0.0.70 → comfy_env-0.0.71}/src/comfy_env/config/types.py +0 -0
- {comfy_env-0.0.70 → comfy_env-0.0.71}/src/comfy_env/errors.py +0 -0
- {comfy_env-0.0.70 → comfy_env-0.0.71}/src/comfy_env/install.py +0 -0
- {comfy_env-0.0.70 → comfy_env-0.0.71}/src/comfy_env/isolation/__init__.py +0 -0
- {comfy_env-0.0.70 → comfy_env-0.0.71}/src/comfy_env/isolation/wrap.py +0 -0
- {comfy_env-0.0.70 → comfy_env-0.0.71}/src/comfy_env/nodes.py +0 -0
- {comfy_env-0.0.70 → comfy_env-0.0.71}/src/comfy_env/pixi/__init__.py +0 -0
- {comfy_env-0.0.70 → comfy_env-0.0.71}/src/comfy_env/pixi/cuda_detection.py +0 -0
- {comfy_env-0.0.70 → comfy_env-0.0.71}/src/comfy_env/pixi/platform/__init__.py +0 -0
- {comfy_env-0.0.70 → comfy_env-0.0.71}/src/comfy_env/pixi/platform/base.py +0 -0
- {comfy_env-0.0.70 → comfy_env-0.0.71}/src/comfy_env/pixi/platform/darwin.py +0 -0
- {comfy_env-0.0.70 → comfy_env-0.0.71}/src/comfy_env/pixi/platform/linux.py +0 -0
- {comfy_env-0.0.70 → comfy_env-0.0.71}/src/comfy_env/pixi/platform/windows.py +0 -0
- {comfy_env-0.0.70 → comfy_env-0.0.71}/src/comfy_env/pixi/resolver.py +0 -0
- {comfy_env-0.0.70 → comfy_env-0.0.71}/src/comfy_env/prestartup.py +0 -0
- {comfy_env-0.0.70 → comfy_env-0.0.71}/src/comfy_env/templates/comfy-env-instructions.txt +0 -0
- {comfy_env-0.0.70 → comfy_env-0.0.71}/src/comfy_env/templates/comfy-env.toml +0 -0
- {comfy_env-0.0.70 → comfy_env-0.0.71}/src/comfy_env/workers/__init__.py +0 -0
- {comfy_env-0.0.70 → comfy_env-0.0.71}/src/comfy_env/workers/base.py +0 -0
- {comfy_env-0.0.70 → comfy_env-0.0.71}/src/comfy_env/workers/mp.py +0 -0
- {comfy_env-0.0.70 → comfy_env-0.0.71}/src/comfy_env/workers/subprocess.py +0 -0
- {comfy_env-0.0.70 → comfy_env-0.0.71}/src/comfy_env/workers/tensor_utils.py +0 -0
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
name: CI
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches: [main]
|
|
6
|
+
pull_request:
|
|
7
|
+
branches: [main]
|
|
8
|
+
|
|
9
|
+
jobs:
|
|
10
|
+
lint:
|
|
11
|
+
runs-on: ubuntu-latest
|
|
12
|
+
steps:
|
|
13
|
+
- uses: actions/checkout@v4
|
|
14
|
+
|
|
15
|
+
- name: Check for non-ASCII characters
|
|
16
|
+
run: |
|
|
17
|
+
# Find non-ASCII characters in Python files (breaks Windows cp1252 encoding)
|
|
18
|
+
if grep -rn '[^\x00-\x7F]' --include="*.py" .; then
|
|
19
|
+
echo "::error::Found non-ASCII characters in Python files. Use ASCII only for Windows compatibility."
|
|
20
|
+
exit 1
|
|
21
|
+
fi
|
|
22
|
+
echo "No non-ASCII characters found."
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: comfy-env
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.71
|
|
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
|
|
@@ -211,7 +211,7 @@ def pixi_install(
|
|
|
211
211
|
if cuda_version:
|
|
212
212
|
cuda_mm = ".".join(cuda_version.split(".")[:2])
|
|
213
213
|
torch_version = CUDA_TORCH_MAP.get(cuda_mm, "2.8")
|
|
214
|
-
log(f"Detected CUDA {cuda_version}
|
|
214
|
+
log(f"Detected CUDA {cuda_version} -> PyTorch {torch_version}")
|
|
215
215
|
else:
|
|
216
216
|
log("Warning: CUDA packages requested but no GPU detected")
|
|
217
217
|
|
|
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
|