8000 travis: Use cython 0.22 by methane · Pull Request #128 · msgpack/msgpack-python · GitHub
[go: up one dir, main page]

Skip to content

travis: Use cython 0.22 #128

8000
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Mar 12, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ language: python
python:
- 2.7

branches:
only:
- master

env:
- TOXENV=py26-c,py27-c
- TOXENV=py32-c,py33-c,py34-c
Expand All @@ -17,8 +21,8 @@ env:
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
- 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
0