8000 Use wheelhouse for cython · overcastcloud/msgpack-python@ca97687 · GitHub
[go: up one dir, main page]

Skip to content

Commit ca97687

Browse files
committed
Use wheelhouse for cython
1 parent ed30acb commit ca97687

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.travis.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,17 @@
11
sudo: false
2+
cache:
3+
directories:
4+
- wheelhouse
5+
26
language: python
37
python:
48
- 2.7
59

610
install:
7-
- pip install tox cython
11+
- pip install wheel tox
12+
- ls -la wheelhouse
13+
- if [ ! -f wheelhouse/Cython-0.21.2-cp27-none-linux_x86_64.whl ] ; then pip wheel cython ; fi
14+
- pip install wheelhouse/Cython-0.21.2-cp27-none-linux_x86_64.whl
815
- cython --cplus msgpack/_packer.pyx msgpack/_unpacker.pyx
916

1017
script: tox

0 commit comments

Comments
 (0)
0