From b9dbd72b2711b8a55098ba04e3c838ac054c14ce Mon Sep 17 00:00:00 2001 From: hexgrad <166769057+hexgrad@users.noreply.github.com> Date: Tue, 4 Feb 2025 12:57:00 -0800 Subject: [PATCH] Bump to 0.7.4 (#52) --- README.md | 2 +- kokoro/__init__.py | 2 +- setup.py | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index d438cc9..71b0c1d 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ An inference library for [Kokoro-82M](https://huggingface.co/hexgrad/Kokoro-82M) You can run this cell on [Google Colab](https://colab.research.google.com/). [Listen to samples](https://huggingface.co/hexgrad/Kokoro-82M/blob/main/SAMPLES.md). ```py # 1️⃣ Install kokoro -!pip install -q kokoro>=0.7.3 soundfile +!pip install -q kokoro>=0.7.4 soundfile # 2️⃣ Install espeak, used for English OOD fallback and some non-English languages !apt-get -qq -y install espeak-ng > /dev/null 2>&1 # 🇪🇸 'e' => Spanish es diff --git a/kokoro/__init__.py b/kokoro/__init__.py index f23977d..e573f01 100644 --- a/kokoro/__init__.py +++ b/kokoro/__init__.py @@ -1,4 +1,4 @@ -__version__ = '0.7.3' +__version__ = '0.7.4' from loguru import logger import sys diff --git a/setup.py b/setup.py index 8b68894..8151751 100644 --- a/setup.py +++ b/setup.py @@ -2,12 +2,12 @@ from setuptools import setup, find_packages setup( name='kokoro', - version='0.7.3', + version='0.7.4', packages=find_packages(), install_requires=[ 'huggingface_hub', 'loguru', - 'misaki[en]>=0.7.3', + 'misaki[en]>=0.7.4', 'numpy==1.26.4', 'scipy', 'torch',