We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 397b011 commit 1926698Copy full SHA for 1926698
1 file changed
.travis.yml
@@ -52,12 +52,12 @@ before_script:
52
53
script:
54
- python test/visual.py -q
55
- - if [[ $(uname -s) == 'Linux' ]]; then
56
- echo "[bdist_wheel]" >> setup.cfg;
57
- echo "universal = 1" >> setup.cfg;
58
- fi;
59
- if [[ ${COMMIT_MESSAGE} =~ "[publish]" ]]; then
60
python setup.py bdist_wheel;
+ if [[ $(uname -s) == 'Linux' ]]; then
+ export PRE_DISTS='dist/*.whl';
+ rename 's/linux_x86_64/any/;' $PRE_DISTS;
+ fi;
61
export DISTS='dist/*';
62
$(pwd)/mason_packages/.link/bin/twine upload -u $PYPI_USER -p $PYPI_PASSWORD $DISTS ;
63
fi;
0 commit comments