From 00f9cf977c479c184833d19355e597ce7e67f9a9 Mon Sep 17 00:00:00 2001 From: hexgrad <166769057+hexgrad@users.noreply.github.com> Date: Fri, 7 Feb 2025 20:52:27 -0800 Subject: [PATCH] Bump to 0.7.11 (#66) --- 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 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',