Skip to content

Commit ccb8dfb

Browse files
authored
Merge pull request #170 from liangxhao/fix_setup
2 parents 55c49d6 + 2edae6f commit ccb8dfb

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

package.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ BASEPATH=$(cd "$(dirname $0)"; pwd)
66
OUTPUT_PATH="${BASEPATH}/output"
77
PYTHON=$(which python3)
88

9+
pip install setuptools==65.6.3
910

1011
mk_new_dir() {
1112
local create_dir="$1" # the target to make

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env python
22

3-
from setuptools import find_packages, setup
3+
from setuptools import setup
44

55
exec(open("version.py").read())
66

version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
"""version init"""
2-
__version__ = "0.1.0beta"
2+
__version__ = "0.1.0"

0 commit comments

Comments
 (0)