mirror of
https://github.com/msgpack/msgpack-python.git
synced 2026-02-06 17:59:52 +00:00
28 lines
617 B
YAML
28 lines
617 B
YAML
sudo: false
|
|
cache:
|
|
directories:
|
|
- wheelhouse
|
|
|
|
language: python
|
|
python:
|
|
- 2.7
|
|
|
|
branches:
|
|
only:
|
|
- master
|
|
|
|
env:
|
|
- TOXENV=py26-c,py27-c
|
|
- TOXENV=py32-c,py33-c,py34-c
|
|
- TOXENV=py26-pure,py27-pure
|
|
- TOXENV=py32-pure,py33-pure,py34-pure
|
|
- 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
|
|
- cython --cplus msgpack/_packer.pyx msgpack/_unpacker.pyx
|
|
|
|
script: tox
|