Skip to content

Commit 4c17ca4

Browse files
committed
Ignore tests for sox deprecation
1 parent 0b7ae0f commit 4c17ca4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/torchaudio/_internal/module_utils.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,8 @@ def decorator(func):
9797
{func.__doc__}
9898
"""
9999

100-
UNSUPPORTED.append(wrapped)
100+
if 'sox' not in func.__module__:
101+
UNSUPPORTED.append(wrapped)
101102
return wrapped
102103

103104
return decorator

0 commit comments

Comments
 (0)