Skip to content

Commit

Permalink
Merge pull request #163 from skycoin/release-0.25.1
Browse files Browse the repository at this point in the history
Release 0.25.1post6
  • Loading branch information
olemis authored Jul 25, 2019
2 parents 34b14d6 + 31e8145 commit 66be956
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .travis/build_wheels_skyapi.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ go env
# 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 /io/lib/skyapi/wheelhouse/
"${PYBIN}/pip" wheel /io/lib/skyapi/ -w wheelhouse/
done

# Bundle external shared libraries into the wheels
for whl in /io/lib/skyapi/wheelhouse/*.whl; do
auditwheel repair "$whl" -w /io/lib/skyapi/wheelhouse/
for whl in wheelhouse/*.whl; do
auditwheel repair "$whl" -w /io/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.25.1.post5"
VERSION = "0.25.1.post6"
# 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.25.1.post5"
__version__ = "0.25.1.post6"
init_error = None

def _print2stderr(msg):
Expand Down

0 comments on commit 66be956

Please sign in to comment.