Skip to content

Commit

Permalink
Update Travis
Browse files Browse the repository at this point in the history
  • Loading branch information
AjayP13 committed May 25, 2020
1 parent ed3c97c commit a951794
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
12 changes: 7 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
env:
matrix:
- CIBW_SKIP: cp34-* cp35-* cp36-* cp37-* cp38-*
- CIBW_SKIP: cp27-* cp33-* cp36-* cp37-* cp38-*
- CIBW_SKIP: cp27-* cp33-* cp34-* cp35-*
- CIBW_SKIP='cp34-* cp35-* cp36-* cp37-* cp38-*'
- CIBW_SKIP='cp27-* cp33-* cp36-* cp37-* cp38-*'
- CIBW_SKIP='cp27-* cp33-* cp34-* cp35-*'
global:
CIBW_BUILD_VERBOSITY: 3

Expand All @@ -15,7 +15,7 @@ jobs:

before_install:
- if [ "$TRAVIS_OS_NAME" = "osx" ]; then /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)" ; fi
- if [ "$TRAVIS_OS_NAME" = "osx" ]; then brew install python ; fi
- if [ "$TRAVIS_OS_NAME" = "osx" ]; then (brew install python || brew upgrade python) ; fi
- if [ "$TRAVIS_OS_NAME" = "osx" ]; then export PYTHON_EXEC_PATH=$(which python) ; fi
- if [ "$TRAVIS_OS_NAME" = "osx" ]; then rm -rf $PYTHON_EXEC_PATH ; fi
- if [ "$TRAVIS_OS_NAME" = "osx" ]; then ln -s $(which python3) $PYTHON_EXEC_PATH ; fi
Expand All @@ -25,7 +25,9 @@ before_install:
- if [ "$TRAVIS_OS_NAME" = "linux" ]; then sudo apt-get install python3-setuptools python3-dev python3-pip -y ; fi

script:

- echo $CIBW_SKIP
- if [ "$TRAVIS_OS_NAME" = "osx" ]; then unset CIBW_SKIP; fi
- echo $CIBW_SKIP
- python3 -m pip install pip setuptools -U
- python3 -m pip install cibuildwheel==1.4.1
- eval "buildwheel() { cibuildwheel --output-dir wheelhouse >>buildwheel.log 2>&1; }"
Expand Down
2 changes: 1 addition & 1 deletion version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version_info__ = ('0', '1', '138')
__version_info__ = ('0', '1', '139')
__version__ = '.'.join(__version_info__)

0 comments on commit a951794

Please sign in to comment.