Skip to content
This repository was archived by the owner on Jun 22, 2021. It is now read-only.

Commit 5e9ff9c

Browse files
migrate from LF to LN
1 parent 0078f3c commit 5e9ff9c

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ gTTS>=2.2.2
77
voxpopuli
88
# pyee pinned because of mycroft
99
pyee==8.1.0
10-
lingua_franca>=0.4.2
10+
lingua_nostra>=0.4.3

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
"psutil",
6060
"gTTS>=2.2.1",
6161
"pyee==8.1.0",
62-
"lingua_franca>=0.4.2"
62+
"lingua_nostra>=0.4.3"
6363
"voxpopuli"],
6464
author_email='[email protected]',
6565
description='TTS engines',

text2speech/modules/mimic2_tts.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
ReadTimeout, ConnectionError, ConnectTimeout, HTTPError
99
)
1010

11-
from lingua_franca.format import pronounce_number
12-
import lingua_franca.config
11+
from lingua_nostra.format import pronounce_number
12+
import lingua_nostra.config
1313

1414
from urllib import parse
1515
import math
@@ -20,7 +20,7 @@
2020

2121
max_sentence_size = 170
2222

23-
lingua_franca.config.load_langs_on_demand = True
23+
lingua_nostra.config.load_langs_on_demand = True
2424

2525

2626
def break_chunks(l, n):
@@ -260,7 +260,7 @@ def _normalized_numbers(self, sentence):
260260
LOG.exception("type error in mimic2_tts.py _normalized_numbers()")
261261
except ImportError:
262262
LOG.warning(
263-
"lingua_franca not installed, can not normalize numbers")
263+
"lingua_nostra not installed, can not normalize numbers")
264264
return sentence
265265

266266
def get_tts(self, sentence, wav_file):

0 commit comments

Comments
 (0)