From 558cfc72334b92e1fa8aa619258f914d704cd1ab Mon Sep 17 00:00:00 2001 From: Hui Zhang Date: Wed, 7 Jun 2023 07:48:10 +0000 Subject: [PATCH] fix librosa==0.8.1 numpy==1.23.5 for paddleaudio align with this version --- audio/setup.py | 4 +++- setup.py | 10 ++++++++++ 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/audio/setup.py b/audio/setup.py index 0fe6e599..f7d45944 100644 --- a/audio/setup.py +++ b/audio/setup.py @@ -38,8 +38,10 @@ VERSION = '1.2.0' COMMITID = 'none' base = [ + # paddleaudio align with librosa==0.8.1, which need numpy==1.23.x + "librosa==0.8.1", + "numpy==1.23.5", "kaldiio", - "librosa>=0.10.0", "pathos", "pybind11", "parameterized", diff --git a/setup.py b/setup.py index 07b411bd..af7c4dc3 100644 --- a/setup.py +++ b/setup.py @@ -40,6 +40,8 @@ base = [ "hyperpyyaml", "inflect", "jsonlines", + # paddleaudio align with librosa==0.8.1, which need numpy==1.23.x + "numpy==1.23.5", "librosa==0.8.1", "scipy>=1.4.0", "loguru", @@ -260,6 +262,7 @@ setup_info = dict( long_description=read("README.md"), long_description_content_type="text/markdown", keywords=[ + "SSL" "speech", "asr", "tts", @@ -268,12 +271,19 @@ setup_info = dict( "text frontend", "MFA", "paddlepaddle", + "paddleaudio", + "streaming asr", + "streaming tts", "beam search", "ctcdecoder", "deepspeech2", + "wav2vec2", + "hubert", + "wavlm", "transformer", "conformer", "fastspeech2", + "hifigan", "gan vocoders", ], python_requires='>=3.7', -- GitLab