Skip to content

Commit a204903

Browse files
Ignore spurious kwave warning on Windows (#399)
It seems to be a bug in kwave that causes this warning to be raised even when the binary name is correct. It shouldn't affect usage.
1 parent e6794f6 commit a204903

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,9 @@ xfail_strict = true
9696
filterwarnings = [
9797
"error",
9898
"ignore:Unsupported Windows version.*ONNX Runtime supports Windows 10 and above, only.:UserWarning",
99+
# kwave v0.4.0 has a bug where valid Windows binary names (with .exe) aren't recognized on
100+
# subsequent property accesses, causing a spurious warning. The binary is still correctly selected.
101+
"ignore:Custom binary name set.*:UserWarning",
99102
# pyparsing 3.x deprecated all camelCase methods in favor of snake_case
100103
"ignore:'[a-zA-Z]+' deprecated - use '[a-z_]+':DeprecationWarning",
101104
]

0 commit comments

Comments
 (0)