eli-schwartz commented on code in PR #45854: URL: https://github.com/apache/arrow/pull/45854#discussion_r2023023349
########## ci/docker/conda-python-pandas.dockerfile: ########## @@ -34,3 +34,5 @@ RUN mamba install -q -y --file arrow/ci/conda_env_sphinx.txt && \ COPY ci/scripts/install_pandas.sh /arrow/ci/scripts/ RUN mamba uninstall -q -y numpy && \ /arrow/ci/scripts/install_pandas.sh ${pandas} ${numpy} + +RUN apt-get update && apt-get install -y patchelf Review Comment: For pyprojects that have meson.build files which compile and install BOTH a shared library, and a python extension that links to the shared library, meson-python can internally package it in a wheel using the same tricks that auditwheel uses to bundle up completely third-party shared libraries. Namely, meson-python installs the shared library into a private directory in site-packages (.xxx.mesonpy.libs/) and uses patchelf to modify the extension module to search there for its shared library dependencies. You shouldn't need patchelf if that relocation isn't being done. Users of auditwheel are probably accustomed to installing patchelf anyway, though. :) -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org