Skip to content

Commit 679a704

Browse files
authored
Fix install issue due to librosa (#1761)
SUMMARY: Had to pin librosa version to 0.11.0 in order for installation with [dev] to work. If not, the installation seemed to pick up lower version of librosa and caused following error during installation: <img width="629" height="165" alt="image" src="https://github.com/user-attachments/assets/687a8695-9c7c-4352-bf8b-a6c213779254" /> The librosa 0.11.0 is the version we tested in nightly jobs. TEST PLAN: A run here has passed the installation across the jobs: https://github.com/neuralmagic/llm-compressor-testing/actions/runs/17083270223/job/48442139981 --------- Signed-off-by: Dan Huang <[email protected]>
1 parent a7700c5 commit 679a704

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ def localversion_func(version: ScmVersion) -> str:
187187
"trl>=0.10.1",
188188
"pandas<2.3.0",
189189
"torchvision",
190-
"librosa",
190+
"librosa==0.11.0",
191191
"soundfile",
192192
"torchcodec",
193193
# linting, formatting, and type checking

0 commit comments

Comments
 (0)