.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
1 changed files with 6 additions and 2 deletions

View File

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