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