Skip to content

Commit c80df50

Browse files
author
dn.petrov
committed
test=9
1 parent a2eeefc commit c80df50

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.github/actions/prepare_snap7/action.yml

+6
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,10 @@ runs:
3131

3232
- name: Update wheel
3333
shell: bash
34+
if: ${{ runner.os != 'macOS'}}
3435
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

-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,6 @@ jobs:
7878
7979
- name: Build wheel
8080
run: |
81-
python3 -m pip --break-system-packages install --upgrade pip setuptools
8281
python3 -m build . --wheel -C="--plat-name=macosx_10_9_universal2"
8382
mkdir -p wheelhouse/${{ runner.os }}/
8483
cp dist/*.whl wheelhouse/${{ runner.os }}/

0 commit comments

Comments
 (0)