diff --git a/README.md b/README.md index 71b0c1d..2734d53 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.4 soundfile +!pip install -q kokoro>=0.7.11 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 41744b2..d7d7c8d 100644 --- a/kokoro/__init__.py +++ b/kokoro/__init__.py @@ -1,4 +1,4 @@ -__version__ = '0.7.9' +__version__ = '0.7.11' from loguru import logger import sys diff --git a/setup.py b/setup.py index 76be539..465f1a5 100644 --- a/setup.py +++ b/setup.py @@ -2,12 +2,12 @@ from setuptools import setup, find_packages setup( name='kokoro', - version='0.7.9', + version='0.7.11', packages=find_packages(), install_requires=[ 'huggingface_hub', 'loguru', - 'misaki[en]>=0.7.9', + 'misaki[en]>=0.7.11', 'numpy==1.26.4', 'scipy', 'torch',