We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a2eeefc commit c80df50Copy full SHA for c80df50
.github/actions/prepare_snap7/action.yml
@@ -31,4 +31,10 @@ runs:
31
32
- name: Update wheel
33
shell: bash
34
+ if: ${{ runner.os != 'macOS'}}
35
run: python3 -m pip install --upgrade pip wheel build setuptools
36
+
37
+ - name: Update wheel
38
+ shell: bash
39
+ if: ${{ runner.os == 'macOS'}}
40
+ run: python3 -m pip --break-system-packages install --upgrade pip wheel build setuptools
.github/workflows/build-and-test.yml
@@ -78,7 +78,6 @@ jobs:
78
79
- name: Build wheel
80
run: |
81
- python3 -m pip --break-system-packages install --upgrade pip setuptools
82
python3 -m build . --wheel -C="--plat-name=macosx_10_9_universal2"
83
mkdir -p wheelhouse/${{ runner.os }}/
84
cp dist/*.whl wheelhouse/${{ runner.os }}/
0 commit comments