Skip to content

Commit fb4eb44

Browse files
author
dn.petrov
committed
test=6
1 parent 9712be1 commit fb4eb44

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/actions/prepare_snap7/action.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,6 @@ runs:
3737
- name: Update wheel
3838
shell: bash
3939
if: ${{ runner.os == 'macOS'}}
40-
run: python3 -m pip install --upgrade pip wheel build setuptools --break-system-packages
40+
run: |
41+
python3 -m ensurepip --break-system-packages
42+
python3 -m pip install --upgrade pip wheel build setuptools --break-system-packages

.github/workflows/osx.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ on:
66
# branches: [master]
77
jobs:
88
osx_wheel:
9-
runs-on: macos-latest
9+
runs-on: macos-11
1010
steps:
1111
- name: Checkout
1212
uses: actions/checkout@v4
1313
- name: Install snap7
1414
run: brew install snap7
1515
- name: Upgrade pip
1616
run: |
17-
python3 -m pip install --upgrade setuptools==69.4.2 --break-system-packages
17+
python3 -m pip install --upgrade setuptools --break-system-packages
1818
- name: Install python-snap7
1919
run: python3 -m pip install -e .[test] --break-system-packages
2020
- name: Run pytest

0 commit comments

Comments
 (0)