fix(scipy): relax STFT test tolerances

This commit is contained in:
2026-09-19 22:42:44 -04:00
parent fee4d31971
commit 4ecc1fd752
3 changed files with 126 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
{ scipy }:
scipy.overridePythonAttrs (old: {
# Keep the STFT tests enabled with tolerances for x86-64-v3 rounding.
patches = (old.patches or [ ]) ++ [ ./stft-test-tolerances.patch ];
})