We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f8b2d6e commit 1ecd483Copy full SHA for 1ecd483
scikit-ci.yml
@@ -86,9 +86,11 @@ build:
86
circle:
87
commands:
88
- |
89
- # Since there are no external shared libraries to bundle into the wheels
90
- # this step will fixup the wheel switching from 'linux' to 'manylinux1' tag
91
arch=${AUDITWHEEL_ARCH}
+ if arch not in ["i686", "x64_86"]:
+ return
92
+ # Since there are no external shared libraries to bundle into the wheels
93
+ # this step will fixup the wheel switching from 'linux' to 'manylinux' tag
94
for whl in dist/*linux_${arch}.whl; do
95
auditwheel repair --plat ${AUDITWHEEL_PLAT} $whl -w ./dist/
96
rm $whl
0 commit comments