Ivan Carvalho
Ivan Carvalho
> @IvanIsCoding any particular reason we can't build for musl-aarch64? Currently the reasons are (in order): 1. NumPy is our only dependency and doesn’t provide musl aarch64 wheels. So you...
I have been playing with the ABI and here are some thoughts: * Our code seems to be compatible, just enabling the `abi-py38` PyO3 feature and the setup-tools Rust `py_limited_api`...
I like this idea, maybe we could ask the designers that maintain the Qiskit visual identity to create one for us
Also, you'll have to update [`api.rst`](https://github.com/Qiskit/rustworkx/blob/main/docs/source/api.rst) to include the new function you added
Also, if we compile to WASM we could use [JupyterLite](https://github.com/jupyterlite/jupyterlite) to build an interactive on-line tutorial that runs entirely on the browser and doesn't depend on Binder or external tools.
First challenge to take note: `rand_pcg::Pcg64` is not available in WASM, we will probably have to fallback to `Pcg32` in WASM ``` error[E0432]: unresolved import `rand_pcg::Pcg64` --> src/layout/random.rs:16:5 | 16...
> > Also, if we compile to WASM we could use [JupyterLite](https://github.com/jupyterlite/jupyterlite) to build an interactive on-line tutorial that runs entirely on the browser and doesn't depend on Binder or...
> Sorry for the super slow review on this, I'm super keen to get us off of tox. I took a quick look through the config and it looks reasonable...
@mtreinish I think this ready for review, I addressed the comments
> I pushed up a small commit to add back the tox.ini file in it's previous form and add the warning to the end of the ouptut. I think it's...