Skip to content

Commit 81f50eb

Browse files
authored
Forcing macos-13 as Python3.7 is not supported on macos-latest #160 (#162)
Signed-off-by: tdruez <tdruez@nexb.com>
1 parent dee2720 commit 81f50eb

2 files changed

Lines changed: 5 additions & 6 deletions

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,9 @@ jobs:
1212
uses: actions/checkout@v4
1313

1414
- name: Setup Python environment
15-
uses: actions/setup-python@v4
15+
uses: actions/setup-python@v5
1616
with:
1717
python-version: "3.9"
18-
architecture: "x64"
1918

2019
- name: Install
2120
run: |
@@ -33,7 +32,8 @@ jobs:
3332
timeout-minutes: 10
3433
strategy:
3534
matrix:
36-
os: [ubuntu-latest, windows-latest, macos-latest]
35+
# Forcing macos-13 as Python3.7 is not supported anymore on macos-latest
36+
os: [ubuntu-latest, windows-latest, macos-13]
3737
python-version:
3838
- "3.12"
3939
- "3.11"
@@ -47,10 +47,9 @@ jobs:
4747
uses: actions/checkout@v4
4848

4949
- name: Setup Python environment
50-
uses: actions/setup-python@v4
50+
uses: actions/setup-python@v5
5151
with:
5252
python-version: ${{ matrix.python-version }}
53-
architecture: "x64"
5453

5554
- name: Install
5655
run: |

.github/workflows/pypi-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- uses: actions/checkout@v4
2727

2828
- name: Set up Python
29-
uses: actions/setup-python@v4
29+
uses: actions/setup-python@v5
3030
with:
3131
python-version: 3.11
3232

0 commit comments

Comments
 (0)