From ed4639ffdfcca4bde133fc595b2bd7453bf720dd Mon Sep 17 00:00:00 2001 From: hexgrad <166769057+hexgrad@users.noreply.github.com> Date: Mon, 3 Feb 2025 22:38:30 -0800 Subject: [PATCH] Bump to 0.7.3 (#49) * Bump to 0.7.3 * Update README.md --- README.md | 4 ++-- kokoro/__init__.py | 2 +- setup.py | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 28dabfb..d438cc9 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.3.5 soundfile +!pip install -q kokoro>=0.7.3 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 @@ -82,6 +82,6 @@ dependencies: - 📊 Thank you to everyone who contributed synthetic training data. - ❤️ Special thanks to all compute sponsors. - 👾 Discord server: https://discord.gg/QuGxSWBfQy -- 🪽 Kokoro is a Japanese word that translates to "heart" or "spirit". Kokoro is also the name of an [AI in the Terminator franchise](https://terminator.fandom.com/wiki/Kokoro). +- 🪽 Kokoro is a Japanese word that translates to "heart" or "spirit". Kokoro is also a [character in the Terminator franchise](https://terminator.fandom.com/wiki/Kokoro) along with [Misaki](https://github.com/hexgrad/misaki?tab=readme-ov-file#acknowledgements). kokoro diff --git a/kokoro/__init__.py b/kokoro/__init__.py index ab663d3..f23977d 100644 --- a/kokoro/__init__.py +++ b/kokoro/__init__.py @@ -1,4 +1,4 @@ -__version__ = '0.7.2' +__version__ = '0.7.3' from loguru import logger import sys diff --git a/setup.py b/setup.py index 0d091ed..8b68894 100644 --- a/setup.py +++ b/setup.py @@ -2,12 +2,12 @@ from setuptools import setup, find_packages setup( name='kokoro', - version='0.7.2', + version='0.7.3', packages=find_packages(), install_requires=[ 'huggingface_hub', 'loguru', - 'misaki[en]>=0.7.2', + 'misaki[en]>=0.7.3', 'numpy==1.26.4', 'scipy', 'torch',