Charlie Vanaret
Charlie Vanaret
Hi @jules-vanaret @Opt-Mucca @AlexandreMoulti @FrancoisGallard, I need to wrap up the Python packaging and [register the package](https://pypi.org/) so that users can install it via `pip install unopy`. I wrote a...
Hi @AntoineD, Thanks for your input and my apologies for getting back to you so late. I'm definitely going to try and write a `pyproject.toml` for Uno. The issue is...
@AntoineD you're absolutely right, asking the user to manage dependencies is not the right idea. The best option at the moment would be to build artifacts in CI with [cibuildwheel](https://cibuildwheel.pypa.io/en/stable/)...
Wheels built with BQPD on Ubuntu and macOS 🥳
Wheels built with BQPD and HiGHS on Linux and macOS. The `unopy` CI test works. However, it fails with MUMPS_static: the linker claims that it cannot find `libblas.a` and `liblapack.a`,...
@amontoison addressed in https://github.com/cvanaret/Uno/pull/372.
Hi @amontoison, can you rebase and change: ``if (NOT CMAKE_CXX_COMPILER_ID STREQUAL "Clang")`` to ``if (NOT CMAKE_CXX_COMPILER_ID STREQUAL "Clang" AND NOT CMAKE_SYSTEM_PROCESSOR STREQUAL "arm64")`` in the CMakeLists?
Latest progress: - `build-windows.yml` - passed the right path to the HiGHS directory, HiGHS is now found but not properly linked. Had to drop `x86` builds. - the `blas` and...
So, we can link HiGHS without errors on macOS, provided we compile with Clang. This also assumes we ditch BQPD and MUMPS so that we don't have to bring in...
@amontoison I can write a draft and ask you for a review.