From dec22462f479285500bd23dff882c1231a84b94f Mon Sep 17 00:00:00 2001 From: Raul Date: Sun, 7 Jul 2019 17:19:10 -0400 Subject: [PATCH] [skyapi] refs #131 changing permission of deploy-with-twine.sh --- .travis/deploy-with-twine.sh | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.travis/deploy-with-twine.sh b/.travis/deploy-with-twine.sh index 9549dcf7..dc6dafab 100644 --- a/.travis/deploy-with-twine.sh +++ b/.travis/deploy-with-twine.sh @@ -1,11 +1,14 @@ #Install twine -pip install -U twine +echo "Installing twine" +python -m pip install twine -#Make dist +#Make wheels +echo "Making wheels" make sdist make bdist_wheel if [ $TRAVIS_OS_NAME == "linux" && $TOXENV == "py37" ]; then make bdist_manylinux_amd64 ; fi #Upload to PyPi +echo "Upload to PyPi" twine upload -u $PYPITEST_USER -p $PYPITEST_PWD --repository-url https://upload.pypi.org/legacy/ dist/* twine upload -u $PYPITEST_USER -p $PYPITEST_PWD --repository-url https://upload.pypi.org/legacy/ lib/skyapi/dist/* \ No newline at end of file