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

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 1 commit
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
Next Next commit
travis: Cython 0.22
  • Loading branch information
methane committed Mar 12, 2015
commit b19e336108ed86ba344eeaccc9476244848e4dd4
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,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