From ff3014342e3d77081afb196e9572e7b0ea47c2de Mon Sep 17 00:00:00 2001 From: Edwin Lee Date: Thu, 7 Mar 2024 21:07:47 -0700 Subject: [PATCH] Bump Python to 3.12.0 for the arm build --- .github/workflows/mac_release.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/mac_release.yml b/.github/workflows/mac_release.yml index 53f445de7fc..a83729e5e3e 100644 --- a/.github/workflows/mac_release.yml +++ b/.github/workflows/mac_release.yml @@ -10,7 +10,6 @@ env: BUILD_TYPE: Release FC: gfortran-13 SDKROOT: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk - Python_REQUIRED_VERSION: 3.8 jobs: mac_release: @@ -26,18 +25,22 @@ jobs: os: macos-11 allow_failure: false arch: x86_64 + python: 3.8 - macos_dev_target: 11.6 os: macos-11 allow_failure: false arch: x86_64 + python: 3.8 - macos_dev_target: 12.1 os: macos-12 allow_failure: false arch: x86_64 + python: 3.8 - macos_dev_target: 13.0 os: macos-14 allow_failure: false arch: arm64 + python: 3.12.0 permissions: # Needed permission to upload the release asset contents: write @@ -45,11 +48,11 @@ jobs: steps: - uses: actions/checkout@v3 - - name: Set up Python ${{ env.Python_REQUIRED_VERSION }} + - name: Set up Python ${{ matrix.python }} id: setup-python uses: actions/setup-python@v4 with: - python-version: ${{ env.Python_REQUIRED_VERSION }} + python-version: ${{ matrix.python }} - name: Setup QtIFW 4.x uses: jmarrec/setup-qtifw@v1