Skip to content

Commit fe0a5f4

Browse files
LulalabyBobDotCompre-commit-ci[bot]
authored
fix(actions): fallback to macos-13 in test suite for python 3.8 & 3.9 (#2437)
* remove macos from test suit Signed-off-by: Lala Sabathil <[email protected]> * Update test.yml Signed-off-by: Lala Sabathil <[email protected]> * ci: use macos-latest but revert to osx13 on some Signed-off-by: BobDotCom <[email protected]> * style(pre-commit): auto fixes from pre-commit.com hooks --------- Signed-off-by: Lala Sabathil <[email protected]> Signed-off-by: BobDotCom <[email protected]> Co-authored-by: BobDotCom <[email protected]> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent f5683c5 commit fe0a5f4

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/test.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,15 @@ jobs:
1717
matrix:
1818
os: [ubuntu-latest, macos-latest, windows-latest]
1919
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
20+
# Python 3.8/3.9 are on macos-13 but not macos-latest (macos-14-arm64)
21+
# https://github.com/actions/setup-python/issues/696#issuecomment-1637587760
22+
exclude:
23+
- { python-version: "3.8", os: "macos-latest" }
24+
- { python-version: "3.9", os: "macos-latest" }
25+
include:
26+
- { python-version: "3.8", os: "macos-13" }
27+
- { python-version: "3.9", os: "macos-13" }
28+
2029
env:
2130
OS: ${{ matrix.os }}
2231
PYTHON: ${{ matrix.python-version }}

0 commit comments

Comments
 (0)