Skip to content

Commit 0843181

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

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

.github/actions/prepare_snap7/action.yml

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

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

+4-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,10 @@ jobs:
1313
- name: Install snap7
1414
run: brew install snap7
1515
- name: Upgrade pip
16-
run: python3 -m pip --break-system-packages install --upgrade setuptools==69.4.2
16+
run: |
17+
python3 -V
18+
rm /usr/lib/python3.11/EXTERNALLY-MANAGED
19+
python3 -m pip --break-system-packages install --upgrade setuptools==69.4.2
1720
- name: Install python-snap7
1821
run: python3 -m pip install --break-system-packages -e .[test]
1922
- name: Run pytest

0 commit comments

Comments
 (0)