Geoffrey Fairchild
Geoffrey Fairchild
I need to look into it. I believe [these docs](https://packaging.python.org/distributing/#wheels) describe how to do it. Because this project contains a compiled extension (i.e., it contains C code that needs to...
I'll definitely look into it. I think I can set aside some time Sunday to deal with PR #7 and this issue.
Hm, looking at [the docs](https://packaging.python.org/distributing/#platform-wheels): > PyPI currently only allows uploads of platform wheels for Windows and OS X, NOT linux. Currently, the wheel tag specification (PEP 425) does not...
Ok! In that case, I can totally look into it.
Nice find. I hadn't heard of that before.
I just built and uploaded an OS X wheel (my work laptop is a Mac): ``` python setup.py bdist_wheel upload ``` That's all it took (well, after running `pip install...
Cool! Thanks for bringing that to my attention. Really neat for that to exist.
Unfortunately not. Work has been absolutely crazy this year. However, I'd love it if someone would like to help me out by issuing a PR.
FYI, I'm actively working on this now. I'm trying to figure out how to build manylinux containers manually (without Travis). https://github.com/pypa/manylinux/issues/73 is where this is going down right now.
Making some progress. This primarily comes from https://github.com/pypa/python-manylinux-demo/blob/master/travis/build-wheels.sh. ```bash > docker pull quay.io/pypa/manylinux1_x86_64 > docker run -it -v $(pwd):/io quay.io/pypa/manylinux1_x86_64 [root@1c3dba71b425 /]# # Compile wheels for PYBIN in /opt/python/*/bin; do...