From b19e336108ed86ba344eeaccc9476244848e4dd4 Mon Sep 17 00:00:00 2001 From: INADA Naoki Date: Fri, 13 Mar 2015 04:05:44 +0900 Subject: [PATCH 1/2] travis: Cython 0.22 --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index dad7e87..ad54ee0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -17,8 +17,8 @@ env: install: - pip install wheel tox - ls -la wheelhouse - - if [ ! -f wheelhouse/Cython-0.21.2-cp27-none-linux_x86_64.whl ] ; then pip wheel cython ; fi - - pip install wheelhouse/Cython-0.21.2-cp27-none-linux_x86_64.whl + - if [ ! -f wheelhouse/Cython-0.22-cp27-none-linux_x86_64.whl ] ; then pip wheel cython==0.22 ; fi + - pip install wheelhouse/Cython-0.22-cp27-none-linux_x86_64.whl - cython --cplus msgpack/_packer.pyx msgpack/_unpacker.pyx script: tox From 2dda8fc4a58dd9be0c8d6f472342fd777d92886d Mon Sep 17 00:00:00 2001 From: INADA Naoki Date: Fri, 13 Mar 2015 04:18:10 +0900 Subject: [PATCH 2/2] travis: Build only master --- .travis.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.travis.yml b/.travis.yml index ad54ee0..ddd5254 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,6 +7,10 @@ language: python python: - 2.7 +branches: + only: + - master + env: - TOXENV=py26-c,py27-c - TOXENV=py32-c,py33-c,py34-c