Skip to content

Commit

Permalink
Merge pull request #157 from simelo/release-0.25.1
Browse files Browse the repository at this point in the history
Post-Release 0.25.1.post.2
  • Loading branch information
olemis authored Jul 23, 2019
2 parents 03e9ddf + 222b958 commit 34b14d6
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 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 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
for whl in /io/lib/skyapi/wheelhouse/*.whl; do
auditwheel repair "$whl" -w /io/lib/skyapi/wheelhouse/
done

2 changes: 1 addition & 1 deletion .travis/skyapi_deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ python -m pip install twine

#Upload to PyPi
echo "Upload to PyPI"
twine upload -u $PYPI_USER -p $PYPI_PASSWD --repository-url https://upload.pypi.org/legacy/ lib/skyapi/dist/*
twine upload -u $PYPI_USER -p $PYPI_PASSWD --repository-url https://upload.pypi.org/legacy/ lib/skyapi/dist/*sky*
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.post1"
VERSION = "0.25.1.post5"
# 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.post1"
__version__ = "0.25.1.post5"
init_error = None

def _print2stderr(msg):
Expand Down

0 comments on commit 34b14d6

Please sign in to comment.