Skip to content

Commit

Permalink
IP-5188: [phonemizer] v3.3.0 배포 (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
novdov authored Jul 9, 2024
1 parent c337bfa commit e0c5daf
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 100 deletions.
22 changes: 2 additions & 20 deletions phonemizer/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,25 +12,7 @@
#
# You should have received a copy of the GNU General Public License
# along with phonologizer. If not, see <http://www.gnu.org/licenses/>.
"""Multilingual text to phones converter"""

from .phonemize import phonemize

__version__ = '3.2.1'
"""Phonemizer version"""


try: # pragma: nocover
# This variable is injected in the __builtins__ by the build process. In
# that case we don't want to import phonemize as there are missing
# dependencies.
__PHONEMIZER_SETUP__
except NameError:
__PHONEMIZER_SETUP__ = False


if __PHONEMIZER_SETUP__: # pragma: nocover
import sys
sys.stderr.write(
'Partial import of phonemizer during the build process.\n')
else:
from .phonemize import phonemize # pylint: disable=unused-import
__all__ = ["phonemize"]
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "phonemizer"
version = "3.2.1"
name = "pozalabs-phonemizer"
version = "3.3.0"
description = "Simple text to phones converter for multiple languages"
authors = ["pozalabs <[email protected]>"]
license = "GPL3"
Expand Down
78 changes: 0 additions & 78 deletions setup.py

This file was deleted.

0 comments on commit e0c5daf

Please sign in to comment.