Skip to content

Commit f3e16bb

Browse files
committed
fix building
1 parent 44f4afd commit f3e16bb

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

publish.sh

+2-5
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,12 @@ buildCode() {
77
cd /pypi-lib \
88
&& make clean \
99
&& make \
10-
&& python setup.py sdist bdist bdist_wheel \
11-
&& twine check dist/* \
12-
&& cd /pypi-lib/docs \
13-
&& make html
10+
&& twine check dist/*
1411
}
1512

1613
updateVersion() {
1714
echo "replace version of software to ${LIB_VERSION}"
18-
sed -i "s/version='0.0.1'/version='${LIB_VERSION}'/g" /pypi-lib/setup.py
15+
sed -i "s/version = 0.0.1/version = ${LIB_VERSION}/g" /pypi-lib/setup.cfg
1916
}
2017

2118
copyCredentials() {

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[metadata]
22
description_file = README.md
33
name = lassobbn
4-
version = 1.0.0
4+
version = 0.0.1
55
author = Jee Vang
66
author_email = [email protected]
77
description = Learning Bayesian Belief Networks with LASSO

0 commit comments

Comments
 (0)