How to export Cython binary wheels from Tox ? #2997
-
In my Cython project, wheels must be generated for each Python version and platform and attached to Github release, like here I configured Tox to build these wheels and test them with different Python versions and all works fine. I could not figure out how to "export" these wheels from The question/requirement is common for Cython projects I suppose. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
https://cibuildwheel.readthedocs.io/en/stable is the PyPA recommended solution. For tox you would need to use the build tool https://github.com/pypa/build and some dedicated build environments to achieve similar. |
Beta Was this translation helpful? Give feedback.
https://cibuildwheel.readthedocs.io/en/stable is the PyPA recommended solution. For tox you would need to use the build tool https://github.com/pypa/build and some dedicated build environments to achieve similar.