We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 44f4afd commit f3e16bbCopy full SHA for f3e16bb
publish.sh
@@ -7,15 +7,12 @@ buildCode() {
7
cd /pypi-lib \
8
&& make clean \
9
&& make \
10
- && python setup.py sdist bdist bdist_wheel \
11
- && twine check dist/* \
12
- && cd /pypi-lib/docs \
13
- && make html
+ && twine check dist/*
14
}
15
16
updateVersion() {
17
echo "replace version of software to ${LIB_VERSION}"
18
- sed -i "s/version='0.0.1'/version='${LIB_VERSION}'/g" /pypi-lib/setup.py
+ sed -i "s/version = 0.0.1/version = ${LIB_VERSION}/g" /pypi-lib/setup.cfg
19
20
21
copyCredentials() {
setup.cfg
@@ -1,7 +1,7 @@
1
[metadata]
2
description_file = README.md
3
name = lassobbn
4
-version = 1.0.0
+version = 0.0.1
5
author = Jee Vang
6
author_email = [email protected]
description = Learning Bayesian Belief Networks with LASSO
0 commit comments