From 8028f33b7fa0e56bff401070de2d8d57d3f2d6af Mon Sep 17 00:00:00 2001 From: huangyuxin Date: Mon, 17 Jan 2022 03:15:39 +0000 Subject: [PATCH] synchronize the version --- paddlespeech/__init__.py | 2 +- setup.py | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/paddlespeech/__init__.py b/paddlespeech/__init__.py index 8d32f2879..5dfc1974c 100644 --- a/paddlespeech/__init__.py +++ b/paddlespeech/__init__.py @@ -12,4 +12,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = '0.1.0' +__version__ = '0.1.1' diff --git a/setup.py b/setup.py index a6b18f979..8f68923d9 100644 --- a/setup.py +++ b/setup.py @@ -17,6 +17,7 @@ import io import os import subprocess as sp import sys +import paddlespeech from pathlib import Path from setuptools import Command @@ -172,7 +173,7 @@ class UploadCommand(Command): setup_info = dict( # Metadata name='paddlespeech', - version='0.1.1', + version=paddlespeech.__version__, author='PaddlePaddle Speech and Language Team', author_email='paddlesl@baidu.com', url='https://github.com/PaddlePaddle/PaddleSpeech',