summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorINADA Naoki <songofacandy@gmail.com>2012-11-07 08:15:46 +0900
committerINADA Naoki <songofacandy@gmail.com>2012-11-07 08:15:46 +0900
commitb14caa419c9ac35779b3212d367c24f36f40e484 (patch)
treef5f4cc6dc8ea6562a7c9458222f2dfb634591a75
parent67d8cc6c4f0e657674175fadda702b7bf95937c3 (diff)
downloadmsgpack-python-b14caa419c9ac35779b3212d367c24f36f40e484.tar.gz
Use system cython.
-rw-r--r--.travis.yml7
1 files changed, 5 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index 9247c78..2f3171c 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -6,7 +6,10 @@ python:
- 3.3
install:
- - "pip install cython six --use-mirrors"
- - "python setup.py install"
+ - sudo apt-get update -qq
+ - sudo apt-get install -q cython
+ - cython --cplus msgpack/_msgpack.pyx
+ - pip install six --use-mirrors
+ - python setup.py install
script: "nosetests -w test"