Questions tagged [python-manylinux]

A framework to build Python binary wheels that can run on most Linux distributions

Backed by the Python Packaging Authority, the framework is standardized by PEP 513 and consists of stock Docker images and processing utilities that ensure that the resulting wheel only uses a limited, predefined set of Linux system calls and system libraries.

18 questions
0
votes
1 answer

Auditwheel ELF alignment error on shared library

I have a Cython project that is pulling in FFTW. When I build my project with python setup.py build_ext --inplace and then import the generated .so from python it runs just fine. But when I try to build a wheel with auditwheel repair --plat…
Eric C.
  • 376
  • 3
  • 16
0
votes
0 answers

Upload platform specific python wheels to pypi from github actions

My project has a small platform specific pre-compiled binary (with no extension) that it depends on. I am able to use a combination of package_data and a post_install script to automate building and pushing the wheels to pypi for macos and…
Jamalan
  • 482
  • 4
  • 15
0
votes
1 answer

CI/CD: How to run the initial setup steps (yum upgrade, deps installation etc). Shoud I use a custom Docker image or not?

I have just started experimenting with CI/CD. I want to create a CI/CD pipeline for my project which builds/tests my application on Linux, MacOS, and Windows. For the Linux part, I need to use a specific Docker container…
AstrOne
  • 3,569
  • 7
  • 32
  • 54
1
2