Skip to content

Commit

Permalink
Merge pull request #170 from simelo/stdevMac_post_0.26.0
Browse files Browse the repository at this point in the history
Post release 0.26.0.dev2
  • Loading branch information
olemis authored Sep 16, 2019
2 parents 8851c3b + 18cf9e3 commit cdef5c0
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
8 changes: 5 additions & 3 deletions .travis/build_wheels_skyapi.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,16 @@ source /etc/profile
go version
go env

mkdir -p /io/lib/skyapi/wheelhouse

# Compile wheels
for PYBIN in /opt/python/*/bin; do
"${PYBIN}/pip" install -r /io/lib/skyapi/requirements.txt
"${PYBIN}/pip" wheel /io/lib/skyapi/ -w wheelhouse/
"${PYBIN}/pip" wheel /io/lib/skyapi/ -w /io/lib/skyapi/wheelhouse/
done

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

2 changes: 1 addition & 1 deletion lib/skyapi/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
from os import path

NAME = "skyapi"
VERSION = "0.26.0.dev1"
VERSION = "0.26.0"
# To install the library, run the following
#
# python setup.py install
Expand Down
2 changes: 1 addition & 1 deletion skycoin/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.26.0.dev1"
__version__ = "0.26.0"
init_error = None

def _print2stderr(msg):
Expand Down

0 comments on commit cdef5c0

Please sign in to comment.