Merge pull request #19 from SimLeek/py37

Py37
This commit is contained in:
Josh Miklos
2019-03-10 17:14:00 -07:00
committed by GitHub
2 changed files with 15 additions and 10 deletions

View File

@ -1,17 +1,22 @@
language: python
dist: xenial
sudo: true
cache: pip
python:
- '2.7'
- '3.5'
- '3.6'
- '2.7'
- '3.5'
- '3.6'
- '3.7'
install:
- pip install -r requirements.txt
- 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
- pip install cibuildwheel==0.10.1
- cibuildwheel --output-dir wheelhouse
- 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 == 3.7 ]]; then export CIBW_BUILD='cp37*'; fi
- pip install cibuildwheel==0.10.1
- cibuildwheel --output-dir wheelhouse
deploy:
provider: pypi
user: SimLeek

View File

@ -1 +1 @@
__version__ = '0.6.2'
__version__ = '0.6.3'