From 2cfa87dd192a88bcd15de2bf0f31fa96b4ea8e0c Mon Sep 17 00:00:00 2001 From: SimLeek Date: Wed, 20 Feb 2019 01:01:56 -0700 Subject: [PATCH] wheel_testing: fixed wheel testing build selector. --- .travis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 5fcd0e6..94c250f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,9 +9,9 @@ python: install: - pip install -r requirements.txt script: -- if [[ $TRAVIS_PYTHON_VERSION == 2.7 ]]; then export CIBW_BUILD=cp27; fi -- if [[ $TRAVIS_PYTHON_VERSION == 3.5 ]]; then export CIBW_BUILD=cp35; fi -- if [[ $TRAVIS_PYTHON_VERSION == 3.6 ]]; then export CIBW_BUILD=cp36; fi +- if [[ $TRAVIS_PYTHON_VERSION == 2.7 ]]; then export CIBW_BUILD='cp27*'; fi +- if [[ $TRAVIS_PYTHON_VERSION == 3.5 ]]; then export CIBW_BUILD='cp35*'; fi +- if [[ $TRAVIS_PYTHON_VERSION == 3.6 ]]; then export CIBW_BUILD='cp36*'; fi - pip install cibuildwheel==0.10.1 - cibuildwheel --output-dir wheelhouse