diff --git a/.travis/build_wheels_skyapi.sh b/.travis/build_wheels_skyapi.sh index 1e0e4d14..fc9d7595 100755 --- a/.travis/build_wheels_skyapi.sh +++ b/.travis/build_wheels_skyapi.sh @@ -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 diff --git a/lib/skyapi/setup.py b/lib/skyapi/setup.py index 8753376b..fec593d0 100644 --- a/lib/skyapi/setup.py +++ b/lib/skyapi/setup.py @@ -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 diff --git a/skycoin/__init__.py b/skycoin/__init__.py index 2f5532e8..99299f74 100644 --- a/skycoin/__init__.py +++ b/skycoin/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.26.0.dev1" +__version__ = "0.26.0" init_error = None def _print2stderr(msg):