Skip to content

Commit cdef5c0

Browse files
authored
Merge pull request #170 from simelo/stdevMac_post_0.26.0
Post release 0.26.0.dev2
2 parents 8851c3b + 18cf9e3 commit cdef5c0

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

.travis/build_wheels_skyapi.sh

+5-3
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,16 @@ source /etc/profile
1717
go version
1818
go env
1919

20+
mkdir -p /io/lib/skyapi/wheelhouse
21+
2022
# Compile wheels
2123
for PYBIN in /opt/python/*/bin; do
2224
"${PYBIN}/pip" install -r /io/lib/skyapi/requirements.txt
23-
"${PYBIN}/pip" wheel /io/lib/skyapi/ -w wheelhouse/
25+
"${PYBIN}/pip" wheel /io/lib/skyapi/ -w /io/lib/skyapi/wheelhouse/
2426
done
2527

2628
# Bundle external shared libraries into the wheels
27-
for whl in wheelhouse/*.whl; do
28-
auditwheel repair "$whl" -w /io/wheelhouse/
29+
for whl in /io/lib/skyapi/wheelhouse/*.whl; do
30+
auditwheel repair "$whl" -w /io/lib/skyapi/wheelhouse/
2931
done
3032

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.26.0.dev1"
19+
VERSION = "0.26.0"
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.26.0.dev1"
1+
__version__ = "0.26.0"
22
init_error = None
33

44
def _print2stderr(msg):

0 commit comments

Comments
 (0)