From cf8ac9112e4c835b2a30f1f914d81446b5f7dc57 Mon Sep 17 00:00:00 2001 From: doctorpangloss <@hiddenswitch.com> Date: Tue, 24 Jun 2025 13:12:09 -0700 Subject: [PATCH] remove torchaudio dependency because it breaks containers - really this is NVIDIA's fault --- pyproject.toml | 7 ------- 1 file changed, 7 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 5e89d327a..78e4f47fc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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" },