summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorINADA Naoki <methane@users.noreply.github.com>2015-03-13 04:21:37 +0900
committerINADA Naoki <methane@users.noreply.github.com>2015-03-13 04:21:37 +0900
commitb49e53003d6abd9ca5617bfa103ae01ee3ca79ae (patch)
tree11cebb2e6877406a79dd47ad459d55116c324fca
parent9fe19cc4089467fff185399c659ffe72f2f52995 (diff)
parent2dda8fc4a58dd9be0c8d6f472342fd777d92886d (diff)
downloadmsgpack-python-b49e53003d6abd9ca5617bfa103ae01ee3ca79ae.tar.gz
Merge pull request #128 from methane/travis/cython-0.22
travis: Use cython 0.22
-rw-r--r--.travis.yml8
1 files changed, 6 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index dad7e87..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
@@ -17,8 +21,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