Skip to content

Commit 2af67e1

Browse files
ci: remove repair command on Windows
1 parent 630b8ab commit 2af67e1

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

.github/workflows/build-wheels.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,12 @@ jobs:
3333
# Global test setup
3434
CIBW_TEST_REQUIRES: "pytest virtualenv"
3535
# Do not repair, everything is already put just as needed to make it work
36-
CIBW_REPAIR_WHEEL_COMMAND: "
36+
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: "
3742
python -m pip install wheel &&
3843
python -m wheel tags --platform-tag ${{ inputs.platform-tag }} --remove {wheel} &&
3944
cp $(dirname {wheel})/slicer_layer_dm*.whl {dest_dir}"

0 commit comments

Comments
 (0)