Commit 7980ce82 authored by Gaetan Lepage's avatar Gaetan Lepage
Browse files

python3Packages.librosa: skip failing tests on python>=3.14

parent f8b6f320
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
@@ -34,6 +34,7 @@
  resampy,
  samplerate,
  writableTmpDirAsHomeHook,
  pythonAtLeast,
}:

buildPythonPackage (finalAttrs: {
@@ -127,6 +128,13 @@ buildPythonPackage (finalAttrs: {
    "test_istft_multi"
    "test_pitch_shift_multi"
    "test_time_stretch_multi"
  ]
  ++ lib.optionals (pythonAtLeast "3.14") [
    # ValueError: cannot resize an array that references or is referenced
    "test_resample_mono"
    "test_resample_multichannel"
    "test_resample_scale"
    "test_resample_stereo"
  ];

  meta = {