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 3ac97aa commit 04d8fc4Copy full SHA for 04d8fc4
packaging/pre_build_script.sh
@@ -33,7 +33,7 @@ else
33
fi
34
35
yum install -y libjpeg-turbo-devel libwebp-devel freetype gnutls
36
- pip install auditwheel
+ pip install "auditwheel<6.3.0"
37
38
39
pip install numpy pyyaml future ninja
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