samuelcolvin / rtoml

A fast TOML library for python implemented in rust.
https://pypi.org/project/rtoml/
MIT License
323 stars 28 forks source link

Feature Request: Add support for s390x #44

Closed wbappz closed 2 years ago

wbappz commented 2 years ago

Building wheel for rtoml (pyproject.toml) did not run successfully. │ exit code: 1 ╰─> [21 lines of output] running bdist_wheel running build running build_py creating build creating build/lib.linux-s390x-cpython-310 creating build/lib.linux-s390x-cpython-310/rtoml copying rtoml/init.py -> build/lib.linux-s390x-cpython-310/rtoml copying rtoml/py.typed -> build/lib.linux-s390x-cpython-310/rtoml running build_ext running build_rust error: can't find Rust compiler

Could you add support for s390x?

messense commented 2 years ago

Should be easy to add now that rtoml uses maturin. maturin-action has support for cross compiling to any of the manylinux supported architectures: https://github.com/PyO3/maturin-action#manylinux-docker-container

samuelcolvin commented 2 years ago

Thanks, happy to accept a PR. Otherwise, I'll try to get to it.