Feature request: build pure python wheel for PyPi #774
Replies: 2 comments 2 replies
-
Why is the source package not good enough? Exist a dedicated If you want special packages, look at the workflow scripts and create a similar one that is simple enough that I understand it, because I have to maintain it. All wheels are build automatically by a github-action using the cibuildwheel server provided by the Python Packaging Authority. |
Beta Was this translation helpful? Give feedback.
-
I added a pure Python wheel deployer by using pypy to run the setup.py script, which does not build the C-extensions: use |
Beta Was this translation helpful? Give feedback.
-
I'm working with your package (thanks so much!) doing some DXF export from a drawing application running in the browser. I've been able to get the core ezdxf package working with Pyodide (Python running in WASM), but it required building a vanilla python wheel from source, as the PyPi builds don't have a py3-none-any.whl build since 0.14.x. Could you look into building that for the package repository? It'd be great to get a further ported version with the extensions built for the Pyodide (WASM/Emscripten) environment, but even just the pure core package would be really helpful.
Thanks so much!
Beta Was this translation helpful? Give feedback.
All reactions