From f29d010f281563244420ea9437d5e5c559b912a0 Mon Sep 17 00:00:00 2001 From: yepeiwen01 Date: Mon, 30 Dec 2024 15:58:08 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E7=89=88=E6=9C=AC=E5=8F=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- python/__init__.py | 2 +- setup.py | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/python/__init__.py b/python/__init__.py index 12800230..9331d36a 100644 --- a/python/__init__.py +++ b/python/__init__.py @@ -13,7 +13,7 @@ # limitations under the License. -__version__ = '0.9.8.2' +__version__ = '0.9.8.3' import os import sys diff --git a/setup.py b/setup.py index 36d42008..f29cf3cf 100755 --- a/setup.py +++ b/setup.py @@ -25,6 +25,8 @@ import datetime from setuptools import setup, find_packages +from __init__ import __version__ + with open('requirements.txt') as f: requirements = f.read().splitlines() @@ -54,7 +56,7 @@ setup( name="appbuilder-sdk", # NOTE(chengmo): 修改此版本号时,请注意同时修改 __init__.py 中的 __version__ - version="0.9.8", + version=__version__, author="dongdaxiang", author_email="dongdaxiang@baidu.com", packages=packages,