We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 630b8ab commit 2af67e1Copy full SHA for 2af67e1
1 file changed
.github/workflows/build-wheels.yml
@@ -33,7 +33,12 @@ jobs:
33
# Global test setup
34
CIBW_TEST_REQUIRES: "pytest virtualenv"
35
# Do not repair, everything is already put just as needed to make it work
36
- CIBW_REPAIR_WHEEL_COMMAND: "
+ CIBW_REPAIR_WHEEL_COMMAND_LINUX: "
37
+ python -m pip install wheel &&
38
+ python -m wheel tags --platform-tag ${{ inputs.platform-tag }} --remove {wheel} &&
39
+ cp $(dirname {wheel})/slicer_layer_dm*.whl {dest_dir}"
40
+ # same as above... Can really do better, we don't want this on Windows
41
+ CIBW_REPAIR_WHEEL_COMMAND_MACOS: "
42
python -m pip install wheel &&
43
python -m wheel tags --platform-tag ${{ inputs.platform-tag }} --remove {wheel} &&
44
cp $(dirname {wheel})/slicer_layer_dm*.whl {dest_dir}"
0 commit comments