We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 68ba7ec commit c77cacdCopy full SHA for c77cacd
packaging/pre_build_script.sh
@@ -38,7 +38,7 @@ else
38
pushd ext_libraries
39
popd
40
export PATH="$(pwd)/ext_libraries/bin:$PATH"
41
- pip install auditwheel
+ pip install "auditwheel<6.3.0"
42
43
# Point to custom libraries
44
export LD_LIBRARY_PATH=$(pwd)/ext_libraries/lib:$LD_LIBRARY_PATH
packaging/wheel/relocate.py
@@ -15,7 +15,10 @@
15
16
# Third party imports
17
if sys.platform == "linux":
18
- from auditwheel.lddtree import lddtree
+ try:
19
+ from auditwheel.lddtree import lddtree
20
+ except ImportError:
21
+ from auditwheel import lddtree
22
23
24
ALLOWLIST = {
0 commit comments