ruckig
ruckig copied to clipboard
No pypi wheels for arm architectures
I'm working with an nvidia jetson arm based system. It'd be great if the arm wheels were hosted on pypi to avoid the manual building process. I generated python 3.12 wheels in conda with:
git clone [email protected]:pantor/ruckig.git
cd ruckig/
mkdir -p build
cd build
cmake -DCMAKE_BUILD_TYPE=Release -DBUILD_PYTHON_MODULE=ON ..
make -j$(nproc)
cd ..
python -m build --wheel .
It seems like the wheels could be automatically generated by adding an arm runner type to the os matrix os: [ubuntu-latest, windows-latest, macos-13, macos-14] in .github/workflows/cd.yml. Happy to help with the PR and testing if this is of general use.
There is a source distribution of the package uploaded on PyPI, which should be installed automatically without a need for a manual building process. Or are you referring to a pre-built wheel for ARM? What is the error message when doing pip install ruckig? What happens if you run pip install git+https://github.com/pantor/ruckig.git?