-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
numpy build fails #12
Comments
Sorry, I totally forgot to paste the actual error message.
|
Hi, Thank you for taking the time to point this out. Adding this:
To I guess I should add an option to exclude libraries from |
Hi, Thank you for helping.
and then ran |
Hello,
Thank you for this nice project.
I tried to use it for building debian/ubuntu packages in a CI/CD pipeline for ubuntu focal.
Unfortunately numpy does not work out of the box.
For me it looks like wheel2deb has some problems with manylinux2010, because
firstly, older versions of numpy (==1.18.5) where a manylinux1 wheel is downloaded when invoking
pip3 wheel numpy==1.18.5
work.Secondly, the manylinux2010 wheel works with pip (
pip install numpy
).(Only tested interactively, downloading the current manylinux1-wheel and running wheel2deb works, too.)
A small example that shows my problem can be created with the following dockerfile
and the bash script that runs the actual failing test cases:
With these two files and docker one can run
to reproduce the error.
Unfortunately, numpy is going to drop support for manylinux1 soon pypa/manylinux#542 (comment) so trying to work around this problem by using the manylinux1 wheels does not work in the long run.
The text was updated successfully, but these errors were encountered: