Skip to content

Commit f9d3254

Browse files
committed
CI: attempt to fix PyPI upload
1 parent 12ad13e commit f9d3254

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.travis.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -79,13 +79,13 @@ after_success: |
7979
if [[ $TRAVIS_OS_NAME == osx && $MB_PYTHON_VERSION == $PYTHON_MAIN_VERSION ]]; then
8080
pip install wheel twine
8181
python setup.py bdist_wheel
82-
twine upload --skip-existing -u sbraz dist/*.{whl,gz}
82+
twine upload --skip-existing -u sbraz dist/*.whl
8383
elif [[ $TRAVIS_OS_NAME == linux && $TRAVIS_PYTHON_VERSION == $PYTHON_MAIN_VERSION ]]; then
8484
# sdists generated on OSX have a problem with the accented test file
8585
# https://github.com/sbraz/pymediainfo/issues/67
8686
python setup.py sdist
8787
pip install twine
88-
twine upload --skip-existing -u sbraz dist/*.{whl,gz}
88+
twine upload --skip-existing -u sbraz dist/*.gz
8989
fi
9090
fi
9191
env:

0 commit comments

Comments
 (0)