From f9d32542e4548ea23ce6796d80875dbf8be33291 Mon Sep 17 00:00:00 2001 From: Louis Sautier Date: Fri, 20 Nov 2020 01:00:13 +0100 Subject: [PATCH] CI: attempt to fix PyPI upload --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 863aac9..2fbd95e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -79,13 +79,13 @@ after_success: | if [[ $TRAVIS_OS_NAME == osx && $MB_PYTHON_VERSION == $PYTHON_MAIN_VERSION ]]; then pip install wheel twine python setup.py bdist_wheel - twine upload --skip-existing -u sbraz dist/*.{whl,gz} + twine upload --skip-existing -u sbraz dist/*.whl elif [[ $TRAVIS_OS_NAME == linux && $TRAVIS_PYTHON_VERSION == $PYTHON_MAIN_VERSION ]]; then # sdists generated on OSX have a problem with the accented test file # https://github.com/sbraz/pymediainfo/issues/67 python setup.py sdist pip install twine - twine upload --skip-existing -u sbraz dist/*.{whl,gz} + twine upload --skip-existing -u sbraz dist/*.gz fi fi env: