diff options
author | INADA Naoki <songofacandy@gmail.com> | 2012-11-07 08:15:46 +0900 |
---|---|---|
committer | INADA Naoki <songofacandy@gmail.com> | 2012-11-07 08:15:46 +0900 |
commit | b14caa419c9ac35779b3212d367c24f36f40e484 (patch) | |
tree | f5f4cc6dc8ea6562a7c9458222f2dfb634591a75 | |
parent | 67d8cc6c4f0e657674175fadda702b7bf95937c3 (diff) | |
download | msgpack-python-b14caa419c9ac35779b3212d367c24f36f40e484.tar.gz |
Use system cython.
-rw-r--r-- | .travis.yml | 7 |
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" |