From 28d8bfb02a3a9362c2234deba4ee2cac6eb2764a Mon Sep 17 00:00:00 2001 From: 131 <11222509+Netrvin@users.noreply.github.com> Date: Tue, 19 Mar 2024 15:57:40 +0800 Subject: [PATCH 1/2] fix pydantic dependency MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit pydantic>=2.0时,str不能为None --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index af7c4dc3df..f5e2352e35 100644 --- a/setup.py +++ b/setup.py @@ -58,6 +58,7 @@ "paddlespeech_feat", "praatio>=5.0.0, <=5.1.1", "prettytable", + "pydantic>=1.10.14, < 2.0", "pypinyin<=0.44.0", "pypinyin-dict", "python-dateutil", From 6377df80037e88efc21a2d6dfb2f5cf5cc4e51e1 Mon Sep 17 00:00:00 2001 From: 131 <11222509+Netrvin@users.noreply.github.com> Date: Mon, 3 Jun 2024 18:03:14 +0800 Subject: [PATCH 2/2] remove extra space --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index f5e2352e35..92e8089e5d 100644 --- a/setup.py +++ b/setup.py @@ -58,7 +58,7 @@ "paddlespeech_feat", "praatio>=5.0.0, <=5.1.1", "prettytable", - "pydantic>=1.10.14, < 2.0", + "pydantic>=1.10.14, <2.0", "pypinyin<=0.44.0", "pypinyin-dict", "python-dateutil",