From 5444abe1d965866fc07abc7a908506c633d655af Mon Sep 17 00:00:00 2001 From: aoirint Date: Mon, 6 Nov 2023 11:33:09 +0900 Subject: [PATCH 1/2] CI: Update macOS runner to macOS 11 --- .github/workflows/python-package.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 844bf5c..9a1e710 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -8,7 +8,7 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-20.04, windows-2019, macos-10.15] + os: [ubuntu-20.04, windows-2019, macos-11] python-version: - "3.6" - "3.7" @@ -20,9 +20,9 @@ jobs: - "pypy-3.8" architecture: ["x86", "x64"] exclude: - - os: macos-10.15 # Can't compile Numpy for this implementation. + - os: macos-11 # Can't compile Numpy for this implementation. python-version: "pypy-3.7" - - os: macos-10.15 + - os: macos-11 architecture: "x86" - os: ubuntu-20.04 architecture: "x86" From 40cea26087caf54f0e11bd37f43de4a83f2e711e Mon Sep 17 00:00:00 2001 From: aoirint Date: Mon, 6 Nov 2023 16:40:16 +0900 Subject: [PATCH 2/2] Change reason of exclusion of macos-11 and pypy-3.7 --- .github/workflows/python-package.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 9a1e710..97e5f7c 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -20,7 +20,7 @@ jobs: - "pypy-3.8" architecture: ["x86", "x64"] exclude: - - os: macos-11 # Can't compile Numpy for this implementation. + - os: macos-11 # No Numpy binary wheel python-version: "pypy-3.7" - os: macos-11 architecture: "x86"