From 8bc79660734aa06572f51ba71da97f1b38f9efbf Mon Sep 17 00:00:00 2001 From: Ali Hamdan Date: Sun, 28 Apr 2024 00:06:15 +0300 Subject: [PATCH] Pin MacOS version in GH actions (#17183) Fix failing MacOS tests in CI Python 3.9 is not available on the latest MacOS images https://github.com/actions/setup-python/issues/850 --------- Co-authored-by: Marc Mueller <30130371+cdce8p@users.noreply.github.com> --- .github/workflows/test.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e4e44c671287..4593e79e728c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -74,7 +74,8 @@ jobs: - name: mypyc runtime tests with py39-macos python: '3.9.18' arch: x64 - os: macos-latest + # TODO: macos-13 is the last one to support Python 3.9, change it to macos-latest when updating the Python version + os: macos-13 toxenv: py tox_extra_args: "-n 2 mypyc/test/test_run.py mypyc/test/test_external.py" - name: mypyc runtime tests with py38-debug-build-ubuntu