From 0b63999ead1d44f4fc3a2039edafab66ba5e7ffc Mon Sep 17 00:00:00 2001 From: Josh Miklos Date: Sun, 10 Mar 2019 17:02:34 -0700 Subject: [PATCH 1/2] py37: added python 3.7 compatibility. Grew fix. --- .travis.yml | 22 +++++++++++++--------- cvpubsubs/__init__.py | 2 +- 2 files changed, 14 insertions(+), 10 deletions(-) diff --git a/.travis.yml b/.travis.yml index e351240..b4f470d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,17 +1,21 @@ 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 + - pip install cibuildwheel==0.10.1 + - cibuildwheel --output-dir wheelhouse deploy: provider: pypi user: SimLeek diff --git a/cvpubsubs/__init__.py b/cvpubsubs/__init__.py index aece342..a68d2bd 100644 --- a/cvpubsubs/__init__.py +++ b/cvpubsubs/__init__.py @@ -1 +1 @@ -__version__ = '0.6.2' +__version__ = '0.6.3' From 228e95f277c5503a3ef90a83b82c14618190dd38 Mon Sep 17 00:00:00 2001 From: Josh Miklos Date: Sun, 10 Mar 2019 17:07:10 -0700 Subject: [PATCH 2/2] py37: added detection for cp37 --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index b4f470d..2a2448e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,6 +14,7 @@ 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 == 3.7 ]]; then export CIBW_BUILD='cp37*'; fi - pip install cibuildwheel==0.10.1 - cibuildwheel --output-dir wheelhouse deploy: