-
I manually build my manylinux wheels with Nuitka as follows /opt/python/cp39-cp39/bin/pip install nuitka
/opt/python/cp39-cp39/bin/python setup.py bdist_nuitka
auditwheel repair dist/*.whl Is is possible to use cibuildwheel to use |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Custom commands are not supported by upstream anymore (for several years), see https://blog.ganssle.io/articles/2021/10/setup-py-deprecated.html. I think you should bring this up with nuitka; they should integrate with Note that if I think you can fixed this from your end too by replacing the bdist_wheel command with nuitka's bdist_nuitka command in your setup.py. |
Beta Was this translation helpful? Give feedback.
Custom commands are not supported by upstream anymore (for several years), see https://blog.ganssle.io/articles/2021/10/setup-py-deprecated.html. I think you should bring this up with nuitka; they should integrate with
bdist_wheel
, not custom commands. cibulodwheel never runs directly on the setup.py, but uses PEP 517 builders like pypa/pip and pypa/build.Note that if
pip instal <package>
cannot build from SDist, this is really bad for your users, too; if they don't get a wheel, there should at least be an attempt to build from source.I think you can fixed this from your end too by replacing the bdist_wheel command with nuitka's bdist_nuitka command in your setup.py.