.travis.sh: only build wheels on OSX

This commit is contained in:
Cosimo Lupo 2016-08-10 18:40:24 +01:00
parent 2dc2ac7701
commit 18dfca9bc1

View File

@ -44,8 +44,12 @@ case "$1" in
"after_success")
case "${BUILD_SYSTEM}" in
"python")
source venv/bin/activate
pip wheel -w dist .
case "${TRAVIS_OS_NAME}" in
"osx")
source venv/bin/activate
pip wheel -w dist .
;;
esac
;;
esac
;;