mirror of
https://github.com/msgpack/msgpack-python.git
synced 2026-02-06 09:50:01 +00:00
Use wheelhouse for cython
This commit is contained in:
parent
ed30acb934
commit
ca9768771d
1 changed files with 8 additions and 1 deletions
|
|
@ -1,10 +1,17 @@
|
|||
sudo: false
|
||||
cache:
|
||||
directories:
|
||||
- wheelhouse
|
||||
|
||||
language: python
|
||||
python:
|
||||
- 2.7
|
||||
|
||||
install:
|
||||
- pip install tox cython
|
||||
- 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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue