Skip to content

Commit 0cb0eb6

Browse files
committed
fix build
1 parent 9a84d5b commit 0cb0eb6

File tree

3 files changed

+3
-9
lines changed

3 files changed

+3
-9
lines changed

Makefile

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,6 @@ test: clean lint
1111
nosetests tests
1212

1313
build: test
14-
python setup.py bdist_egg
15-
16-
build-dist: compile
1714
python setup.py bdist_egg sdist bdist_wheel
1815

1916
install: build

publish.sh

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

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

2118
copyCredentials() {

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = pypair
3-
version = 3.0.8
3+
version = 0.0.1
44
author = Jee Vang
55
author_email = vangjee@gmail.com
66
description = Pairwise association measures of statistical variable types

0 commit comments

Comments
 (0)