diff --git a/.travis.yml b/.travis.yml index 643be36c..cfc9043c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -68,7 +68,7 @@ jobs: - ./ci/travis/pyenv-wheel.sh after_success: - if [[ ! -z "$TRAVIS_TAG" ]]; then - twine upload -u $PYPI_U -p $PYPI_P wheels/*.whl; + twine upload --skip-existing -u $PYPI_U -p $PYPI_P wheels/*.whl; fi language: generic python: skip @@ -76,6 +76,9 @@ jobs: - <<: *osx-10-10 env: - PYENV: 3.7.0 + install: skip + script: + - ./ci/travis/pyenv-wheel.sh - &osx-wheels stage: build packages @@ -107,7 +110,7 @@ jobs: - ./ci/travis/pyenv-wheel.sh after_success: - if [[ ! -z "$TRAVIS_TAG" ]]; then - twine upload -u $PYPI_U -p $PYPI_P wheels/*.whl; + twine upload --skip-existing -u $PYPI_U -p $PYPI_P wheels/*.whl; fi language: generic python: skip @@ -176,7 +179,7 @@ jobs: - ./ci/travis/build-manylinux.sh after_success: - if [[ ! -z "$TRAVIS_TAG" ]]; then - twine upload -u $PYPI_U -p $PYPI_P wheelhouse/*.whl; + twine upload --skip-existing -u $PYPI_U -p $PYPI_P wheelhouse/*.whl; fi deploy: - provider: pypi diff --git a/ci/travis/pyenv-wheel.sh b/ci/travis/pyenv-wheel.sh index 91e09b9e..e23cbfef 100755 --- a/ci/travis/pyenv-wheel.sh +++ b/ci/travis/pyenv-wheel.sh @@ -41,3 +41,4 @@ deactivate set -x mv -f *.whl wheels/ +ls -lh wheels