Commit 75ed6c77 authored by Michael Davidsaver's avatar Michael Davidsaver

travis-ci release

parent b49e171c
...@@ -30,3 +30,11 @@ matrix: ...@@ -30,3 +30,11 @@ matrix:
language: generic language: generic
env: PYTHON=python3 PYVER=3.6 URL=https://www.python.org/ftp/python/3.6.5/python-3.6.5-macosx10.6.pkg env: PYTHON=python3 PYVER=3.6 URL=https://www.python.org/ftp/python/3.6.5/python-3.6.5-macosx10.6.pkg
script: ./travis-osx.sh script: ./travis-osx.sh
after_success:
- |
if [ "$TRAVIS_TAG" -a "$TWINE_USERNAME" ] ; then
echo "Deploying"
${PYTHON:-python} -m pip install twine
${PYTHON:-python} -m twine upload --skip-existing dist/*.tar.* dist/*.whl || true
fi
...@@ -4,7 +4,7 @@ from setuptools import setup, Extension ...@@ -4,7 +4,7 @@ from setuptools import setup, Extension
setup( setup(
name='setuptools_dso', name='setuptools_dso',
version="1.2", version="1.3",
description="setuptools extension to build non-python shared libraries", description="setuptools extension to build non-python shared libraries",
long_description="""setuptools extension for building non-python shared libraries long_description="""setuptools extension for building non-python shared libraries
and packaging them for distribution. eg. for use by python extensions. and packaging them for distribution. eg. for use by python extensions.
......
...@@ -15,6 +15,7 @@ do ...@@ -15,6 +15,7 @@ do
rm -rf build rm -rf build
"${PYBIN}/python" setup.py clean -a "${PYBIN}/python" setup.py clean -a
"${PYBIN}/python" setup.py sdist
find . find .
......
...@@ -22,6 +22,7 @@ $PYTHON -m pip install --upgrade wheel ...@@ -22,6 +22,7 @@ $PYTHON -m pip install --upgrade wheel
"$PYTHON" setup.py clean -a "$PYTHON" setup.py clean -a
"$PYTHON" setup.py sdist
"$PYTHON" setup.py -v install "$PYTHON" setup.py -v install
cd example cd example
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment