Replies: 4 comments 3 replies
-
manylinux2014_x86_64 is too old for your application and will reach the end of life on June 30th, 2024. |
Beta Was this translation helpful? Give feedback.
-
I think this helped? Though still getting the same error
|
Beta Was this translation helpful? Give feedback.
-
If I'm reading the workflow correctly, the build and repair steps are actually being run on the GHA runner rather than in the container. |
Beta Was this translation helpful? Give feedback.
-
Answered by @mayeut ! |
Beta Was this translation helpful? Give feedback.
-
this isn't as much of an "issue" as it is a plea for help
i'm trying to setup the deployment of a python module written in C that uses OpenMP for parallel computation
the issue at hand is that i'm stumped about how to even convert a linux-arch-specific wheel to a manylinux wheel without issues. i don't care if my python module ends up being distributed as a binary or source code that gets compiled on the user machine, in fact i'd prefer if it were the latter, however i'm simply unable to push a wheel to pypi because it's not a manylinux wheel...
workflow file:
please keep in mind i'm not that smart, especially when it comes to distributing packages and such, so i'm bound to make extremely silly mistakes, but here i'm genuinely stumped as to what the issue is; it looks like i'm doing everything according to instructions, pulling docker image, opening the container, building using setup.py, but still it just wont work for some reason...
just in case, here's my CMakeLists.txt:
and the setup.py:
i'm not sure what to do at this point, auditwheel doesn't like openmp's library usage in my module, also it doesn't like Python's .so usage too, for some reason?
the module itself works fine and builds without any issues, but pypi just wont accept it
i've looked into other issues of the same topic, but none of them are working for me.
Beta Was this translation helpful? Give feedback.
All reactions