Skip to content

Commit

Permalink
修改版本号
Browse files Browse the repository at this point in the history
  • Loading branch information
yepeiwen01 committed Dec 30, 2024
1 parent 67abc8a commit f29d010
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion python/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# limitations under the License.


__version__ = '0.9.8.2'
__version__ = '0.9.8.3'

import os
import sys
Expand Down
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()

Expand Down Expand Up @@ -54,7 +56,7 @@
setup(
name="appbuilder-sdk",
# NOTE(chengmo): 修改此版本号时,请注意同时修改 __init__.py 中的 __version__
version="0.9.8",
version=__version__,
author="dongdaxiang",
author_email="[email protected]",
packages=packages,
Expand Down

0 comments on commit f29d010

Please sign in to comment.