Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .python-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
3.12
7 changes: 4 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,14 @@ name = "comfyui-coremlsuite"
description = "This extension contains a set of custom nodes for ComfyUI that allow you to use Core ML models in your ComfyUI workflows."
version = "2.1.2"
license = "MIT"
requires-python = ">=3.12,<3.13"
requires-python = ">=3.12"
dependencies = [
# torch is provided by the host (ComfyUI) and intentionally left unpinned
# here: a hard torch cap would downgrade the host's torch and break its
# torchvision/torchaudio ABI. coreml-diffusion pulls torch>=2.7 transitively.
# >=0.1.5: model-version auto-detection (convert(model_version=None)).
"coreml-diffusion>=0.1.5,<0.2",
# >=0.1.6: model-version auto-detection (convert(model_version=None)) and the
# dropped <3.13 Python cap (kept in sync with this package's requires-python).
"coreml-diffusion>=0.1.6,<0.2",
"coremltools>=9,<10",
"numpy>=2,<3",
]
Expand Down
Loading
Loading