Closed
Description
The latest version of numpy(1.25.0) added musl wheels that support use in alpine. I'm trying to use this in an alpine docker container, but struggling to due to a dependency relying on this library.
I believe this should return the latest version of numpy when the target is musl.
Additionally, if anyone could offer a way for me to install the version of numpy and use it as a dependency when downloading scikit I would appreciate it. I'm currently running:
pip wheel --no-cache-dir --wheel-dir /usr/src/app/wheels -r requirements.txt -c constraints.txt
with the following in my constraints.txt file:
numpy>=1.25.0
and yet still numpy 1.23 is being installed, which is incompatible with my alpine image.