remove torchaudio dependency because it breaks containers - really this is NVIDIA's fault

This commit is contained in:
doctorpangloss 2025-06-24 13:12:09 -07:00
parent f6339e8115
commit cf8ac9112e

View File

@ -20,7 +20,6 @@ classifiers = [
dependencies = [ dependencies = [
"torch", "torch",
"torchvision", "torchvision",
"torchaudio",
"comfyui-frontend-package", "comfyui-frontend-package",
"comfyui-workflow-templates", "comfyui-workflow-templates",
"comfyui-embedded-docs", "comfyui-embedded-docs",
@ -144,7 +143,6 @@ cpu = [
cu126 = [ cu126 = [
"torch", "torch",
"torchvision", "torchvision",
"torchaudio",
"triton ; sys_platform == 'Linux'", "triton ; sys_platform == 'Linux'",
"triton-windows ; sys_platform == 'win32'", "triton-windows ; sys_platform == 'win32'",
] ]
@ -152,7 +150,6 @@ cu126 = [
cu128 = [ cu128 = [
"torch", "torch",
"torchvision", "torchvision",
"torchaudio",
"triton ; sys_platform == 'Linux'", "triton ; sys_platform == 'Linux'",
"triton-windows ; sys_platform == 'win32'", "triton-windows ; sys_platform == 'win32'",
] ]
@ -160,7 +157,6 @@ cu128 = [
rocm = [ rocm = [
"torch", "torch",
"torchvision", "torchvision",
"torchaudio",
"pytorch-triton-rocm" "pytorch-triton-rocm"
] ]
@ -223,9 +219,6 @@ torchvision = [
] ]
torchaudio = [ torchaudio = [
{ index = "pytorch-cpu", extra = "cpu" }, { index = "pytorch-cpu", extra = "cpu" },
{ index = "pytorch-cu126", extra = "cu126", marker = "sys_platform == 'Linux' or sys_platform == 'win32'" },
{ index = "pytorch-cu128", extra = "cu128", marker = "sys_platform == 'Linux' or sys_platform == 'win32'" },
{ index = "pytorch-rocm", extra = "rocm", marker = "sys_platform == 'Linux'" },
] ]
comfyui-frontend-package = [ comfyui-frontend-package = [
{ git = "https://github.com/appmana/appmana-comfyui-frontend", subdirectory = "comfyui_frontend_package" }, { git = "https://github.com/appmana/appmana-comfyui-frontend", subdirectory = "comfyui_frontend_package" },