Skip to content

Commit 66be956

Browse files
authored
Merge pull request #163 from skycoin/release-0.25.1
Release 0.25.1post6
2 parents 34b14d6 + 31e8145 commit 66be956

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.travis/build_wheels_skyapi.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ go env
2020
# Compile wheels
2121
for PYBIN in /opt/python/*/bin; do
2222
"${PYBIN}/pip" install -r /io/lib/skyapi/requirements.txt
23-
"${PYBIN}/pip" wheel /io/lib/skyapi/ -w /io/lib/skyapi/wheelhouse/
23+
"${PYBIN}/pip" wheel /io/lib/skyapi/ -w wheelhouse/
2424
done
2525

2626
# Bundle external shared libraries into the wheels
27-
for whl in /io/lib/skyapi/wheelhouse/*.whl; do
28-
auditwheel repair "$whl" -w /io/lib/skyapi/wheelhouse/
27+
for whl in wheelhouse/*.whl; do
28+
auditwheel repair "$whl" -w /io/wheelhouse/
2929
done
3030

lib/skyapi/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
from os import path
1717

1818
NAME = "skyapi"
19-
VERSION = "0.25.1.post5"
19+
VERSION = "0.25.1.post6"
2020
# To install the library, run the following
2121
#
2222
# python setup.py install

skycoin/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.25.1.post5"
1+
__version__ = "0.25.1.post6"
22
init_error = None
33

44
def _print2stderr(msg):

0 commit comments

Comments
 (0)