Matthieu Darbois

Results 359 comments of Matthieu Darbois

Information about the graphs added in 33691ff4a053df7999db2e669cc4af884f9bf5ca

This project could probably drop Travis-CI & move to QEMU on GitHub Actions with a reduced test set only on push. As long as [manylinux](https://github.com/pypa/manylinux/issues/1750) and/or [cibuildwheel](https://github.com/pypa/cibuildwheel/issues/2290) do need it,...

As of https://github.com/pypa/auditwheel/pull/633, Travis CI is not used anymore.

I think the arch shall be deduced from the input wheel. The information is already there, there should be no need to ask the user for input.

Thanks @rhelmot for the deep analysis and the work done on this. I've not forgotten about it. Indeed the wheel policies is really insistent on knowing everything before hand. I...

This does not relate to #363 The RPATH modification is not required for runtime or when linking a shared library (as would be the usage of spicy_openblas). The `cc.links()` test...

Using the provided wheel (I used the ILP64 one) and the code from the cc.links() test in numpy inside a manylinux_2_28 image: ``` [root@64042783eba5 ~]# export OPENBLAS_PATH=/opt/_internal/cpython-3.10.13/lib/python3.10/site-packages/scipy_openblas64 [root@64042783eba5 ~]# gcc...

I'll try to follow the progress in various projects but for manylinux, one issue will be that we are reaching cache size limits on GitHub Actions. It might be interesting...

Caching is being moved from GHA cache to GitHub Container Registry in #1813 so we could probably move forward with this in manylinux as well. The only thing that might...