From cb32839dd8b6052599f320659aa67d793cac62b7 Mon Sep 17 00:00:00 2001 From: Sadam Hussain Memon Date: Fri, 7 May 2021 07:41:26 +0500 Subject: [PATCH 1/2] url link formatting for implementing new Model Fixed text formatting for url directing to hammer_and_wrench Implementing a New Model in Links and Resources section --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 313c7525..92c2ee52 100644 --- a/README.md +++ b/README.md @@ -47,7 +47,7 @@ Please use our dedicated channels for questions and discussion. Help is much mor | 🚀 **Released Models** | [TTS Releases](https://github.com/coqui-ai/TTS/releases) and [Experimental Models](https://github.com/coqui-ai/TTS/wiki/Experimental-Released-Models)| | 🖥️ **Demo Server** | [TTS/server](https://github.com/coqui-ai/TTS/tree/master/TTS/server)| | 🤖 **Synthesize speech** | [TTS/README.md](https://github.com/coqui-ai/TTS#example-synthesizing-speech-on-terminal-using-the-released-models)| -| 🛠️ **Implementing a New Model** | [TTS/Wiki][https://github.com/coqui-ai/TTS/wiki/Implementing-a-New-Model-in-%F0%9F%90%B8TTS]| +| 🛠️ **Implementing a New Model** | [TTS/Wiki](https://github.com/coqui-ai/TTS/wiki/Implementing-a-New-Model-in-%F0%9F%90%B8TTS)| ## 🥇 TTS Performance

From 607d5cf3773080eb4511b9547f48ea9a95df3a85 Mon Sep 17 00:00:00 2001 From: chmodsss Date: Mon, 10 May 2021 19:46:34 +0200 Subject: [PATCH 2/2] [#480] Adding version variable --- TTS/__init__.py | 1 + TTS/_version.py | 1 + setup.py | 3 ++- 3 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 TTS/_version.py diff --git a/TTS/__init__.py b/TTS/__init__.py index e69de29b..8dee4bf8 100644 --- a/TTS/__init__.py +++ b/TTS/__init__.py @@ -0,0 +1 @@ +from ._version import __version__ diff --git a/TTS/_version.py b/TTS/_version.py new file mode 100644 index 00000000..d7d14b11 --- /dev/null +++ b/TTS/_version.py @@ -0,0 +1 @@ +__version__ = '0.0.13.2' diff --git a/setup.py b/setup.py index abed43a2..a68b09e0 100644 --- a/setup.py +++ b/setup.py @@ -4,6 +4,7 @@ import os import subprocess import sys from distutils.version import LooseVersion +from TTS._version import __version__ import numpy import setuptools.command.build_py @@ -18,7 +19,7 @@ if LooseVersion(sys.version) < LooseVersion("3.6") or LooseVersion(sys.version) ) -version = '0.0.13.2' +version = __version__ cwd = os.path.dirname(os.path.abspath(__file__)) class build_py(setuptools.command.build_py.build_py): # pylint: disable=too-many-ancestors