To create a wheel (whl), run
pipx run cibuildwheel --only cp312-manylinux_x86_64To install the whl file
pip3 install wheelhouse/pyqint-0.18.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whland to locally test
pytest-3 tests/*.pyFor skipping unit testing when compiling with cibuildwheel, run
CIBW_TEST_SKIP="cp312-manylinux_x86_64" pipx run cibuildwheel --only cp312-manylinux_x86_64This will place wheels in the dist folder. To upload these wheels
to PyPi, make sure you have twine installed using
pip install twineTo upload, run
python -m twine upload wheelhouse/*Make sure methon-python is installed:
pip install meson-python
pip install -e .