dist: Remove liblzma, libreadline and libbz2 from exclude_dependencies

These are not part of the manylinux specs, and actually needed by the Python _lzma, readline, etc. modules.

This fixes the problem that these dependencies are not being picked up automatically.
This commit is contained in:
rdb 2020-12-30 23:27:54 +01:00
parent 42580a81de
commit e0309a98aa

View File

@ -270,8 +270,8 @@ class build_apps(setuptools.Command):
# manylinux1/linux
'libdl.so.*', 'libstdc++.so.*', 'libm.so.*', 'libgcc_s.so.*',
'libpthread.so.*', 'libc.so.*', 'ld-linux-x86-64.so.*',
'libgl.so.*', 'libx11.so.*', 'libreadline.so.*', 'libncursesw.so.*',
'libbz2.so.*', 'libz.so.*', 'liblzma.so.*', 'librt.so.*', 'libutil.so.*',
'libgl.so.*', 'libx11.so.*', 'libncursesw.so.*', 'libz.so.*',
'librt.so.*', 'libutil.so.*',
# macOS
'/usr/lib/libc++.1.dylib',