diff options
| author | INADA Naoki <methane@users.noreply.github.com> | 2015-11-07 16:54:11 +0900 |
|---|---|---|
| committer | INADA Naoki <methane@users.noreply.github.com> | 2015-11-07 16:54:11 +0900 |
| commit | a329850147e045ca990c1ff870ce191c4efa4d06 (patch) | |
| tree | 20f7d97c1f94fa2e5fe3df00a88c574f5748d155 /.travis.yml | |
| parent | c102e6cee58df543d352e36f6d2d0bdd595e1063 (diff) | |
| parent | e9ab4d8824fddd070bac7cedca332130bf2028b0 (diff) | |
| download | msgpack-python-a329850147e045ca990c1ff870ce191c4efa4d06.tar.gz | |
Merge pull request #153 from methane/fix/warnings
fix compiler warnings
Diffstat (limited to '.travis.yml')
| -rw-r--r-- | .travis.yml | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/.travis.yml b/.travis.yml index ddd5254..7695184 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,8 +1,5 @@ sudo: false -cache: - directories: - - wheelhouse - +cache: pip language: python python: - 2.7 @@ -19,10 +16,8 @@ env: - TOXENV=pypy-pure,pypy3-pure install: - - pip install wheel tox - - ls -la wheelhouse - - 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 + - pip install tox + - pip install cython --install-option=--cython-with-refnanny --install-option=--no-cython-compile - cython --cplus msgpack/_packer.pyx msgpack/_unpacker.pyx script: tox |
