Skip to content

Commit

Permalink
[coqui-ai#480] Adding version variable
Browse files Browse the repository at this point in the history
  • Loading branch information
chmodsss committed May 10, 2021
1 parent d03aa36 commit 607d5cf
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions TTS/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from ._version import __version__
1 change: 1 addition & 0 deletions TTS/_version.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__version__ = '0.0.13.2'
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
import subprocess
import sys
from distutils.version import LooseVersion
from TTS._version import __version__

import numpy
import setuptools.command.build_py
Expand All @@ -18,7 +19,7 @@
)


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
Expand Down

0 comments on commit 607d5cf

Please sign in to comment.