summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: b9d19c13c5c0f737a459148a2db7562ede4e3c13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
sudo: false
cache:
    directories:
        - wheelhouse

language: python
python:
    - 2.7

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
    - cython --cplus msgpack/_packer.pyx msgpack/_unpacker.pyx

script: tox