Skip to content

Commit c591cc7

Browse files
authored
Merge pull request #25 from r9y9/fix-dict-url
FIx dict URL from unstable sourceforge to github release
2 parents 15eb39a + 12bd6b8 commit c591cc7

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

docs/changelog.rst

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
Change log
22
==========
33

4-
v0.1.5 <2021-xx-xx>
4+
v0.1.5 <2021-09-18>
55
-------------------
66

7+
* `#25`_: FIx dict URL from unstable sourceforge to github release
8+
* `#24`_: Fix travis CI
9+
10+
711
v0.1.4 <2021-09-16>
812
-------------------
913

@@ -64,3 +68,5 @@ Initial release with OpenJTalk's text processsing functionality
6468
.. _#20: https://github.com/r9y9/pyopenjtalk/issues/20
6569
.. _#21: https://github.com/r9y9/pyopenjtalk/issues/21
6670
.. _#22: https://github.com/r9y9/pyopenjtalk/pull/22
71+
.. _#24: https://github.com/r9y9/pyopenjtalk/pull/24
72+
.. _#25: https://github.com/r9y9/pyopenjtalk/pull/25

pyopenjtalk/__init__.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,8 @@
2626
"OPEN_JTALK_DICT_DIR",
2727
pkg_resources.resource_filename(__name__, "open_jtalk_dic_utf_8-1.11"),
2828
).encode("utf-8")
29-
_DICT_URL = (
30-
"https://downloads.sourceforge.net/open-jtalk/open_jtalk_dic_utf_8-1.11.tar.gz"
31-
)
29+
_dict_download_url = "https://github.com/r9y9/open_jtalk/releases/download/v1.11.1"
30+
_DICT_URL = f"{_dict_download_url}/open_jtalk_dic_utf_8-1.11.tar.gz"
3231

3332
# Default mei_normal.voice for HMM-based TTS
3433
DEFAULT_HTS_VOICE = pkg_resources.resource_filename(

0 commit comments

Comments
 (0)