From c2225218e9d63be7eafb85f6ddc39a55e7f2d6d3 Mon Sep 17 00:00:00 2001 From: Ali Hamdan Date: Sat, 27 Apr 2024 15:45:47 +0200 Subject: [PATCH 1/5] Update Python version in GH actions MacOS tests --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e4e44c6712877..5c8b67745e74e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -72,7 +72,7 @@ jobs: test_mypyc: true - name: mypyc runtime tests with py39-macos - python: '3.9.18' + python: '3.9.19' arch: x64 os: macos-latest toxenv: py From c9cd30e6546700089b4c0a4833aef00962e13f7d Mon Sep 17 00:00:00 2001 From: Ali Hamdan Date: Sat, 27 Apr 2024 15:50:36 +0200 Subject: [PATCH 2/5] Try with native arch --- .github/workflows/test.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5c8b67745e74e..839a6b0cddf3b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -73,7 +73,6 @@ jobs: - name: mypyc runtime tests with py39-macos python: '3.9.19' - arch: x64 os: macos-latest toxenv: py tox_extra_args: "-n 2 mypyc/test/test_run.py mypyc/test/test_external.py" From 5a0126ba81d152843f7dcb581769f45700632c92 Mon Sep 17 00:00:00 2001 From: Ali Hamdan Date: Sat, 27 Apr 2024 15:54:13 +0200 Subject: [PATCH 3/5] Don't use MacOS 14 --- .github/workflows/test.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 839a6b0cddf3b..3c2cc528fce9a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -72,8 +72,9 @@ jobs: test_mypyc: true - name: mypyc runtime tests with py39-macos - python: '3.9.19' - os: macos-latest + python: '3.9.18' + arch: x64 + 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 From f4daf718c9b7a1532391195488dcb205caf684eb Mon Sep 17 00:00:00 2001 From: Ali Hamdan Date: Sat, 27 Apr 2024 22:20:18 +0200 Subject: [PATCH 4/5] Update .github/workflows/test.yml --- .github/workflows/test.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3c2cc528fce9a..a80e7b612f381 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -74,6 +74,7 @@ jobs: - name: mypyc runtime tests with py39-macos python: '3.9.18' arch: x64 + # TODO: macos-13 is the latest 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" From b2dd5544bcc454599e104cd406299f78e0ea8f79 Mon Sep 17 00:00:00 2001 From: Ali Hamdan Date: Sat, 27 Apr 2024 22:27:32 +0200 Subject: [PATCH 5/5] Update .github/workflows/test.yml Co-authored-by: Marc Mueller <30130371+cdce8p@users.noreply.github.com> --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a80e7b612f381..4593e79e728cd 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -74,7 +74,7 @@ jobs: - name: mypyc runtime tests with py39-macos python: '3.9.18' arch: x64 - # TODO: macos-13 is the latest to support Python 3.9, change it to macos-latest when updating the Python version + # 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"