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