Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Publish wheel for py27mu (in addition to py27m)
We run `py27mu`, which requires installing via `.tar.gz` (and therefore all the compilation dependencies are required as well). But we vastly prefer the speed and simplicity of installing fastavro via wheel. This change publishes a wheel for `py27mu`. ----- The full list of distributions currently supported by the manylinux image is: ``` $ docker run -it quay.io/pypa/manylinux1_x86_64 bash -c "ls /opt/python" cp27-cp27m cp27-cp27mu cp34-cp34m cp35-cp35m cp36-cp36m cp37-cp37m ``` All of these are currently published as wheels with the exception of `cp27mu`. I've tested this change by running this invocation from the `.travis.yml`: ``` $ docker run --rm -v "$(pwd):/data" quay.io/pypa/manylinux1_x86_64 bash -c "/data/.travis_build_wheel.sh 2.7 && ls /data/dist/" ... fastavro-0.21.14-cp27-cp27m-manylinux1_x86_64.whl fastavro-0.21.14-cp27-cp27mu-manylinux1_x86_64.whl ``` ------ Let me know if there's more I can help with!
- Loading branch information