From 59b23fd6b7bd0566485263873d0d5962138527c7 Mon Sep 17 00:00:00 2001 From: chrisjbillington Date: Fri, 7 Apr 2023 10:26:38 +1000 Subject: [PATCH] workflow: pin macos version to 10.15 for now This is because xcode 11 is not available on newer macos, and xcode 11 is required for building conda packages. Here in zprocess we don't actually need to do compilation since we're a pure package, but we'll keep this in line with the standard workflow across all our projects. --- .github/workflows/release.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ea83d35..bf8957f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -42,10 +42,10 @@ jobs: - { os: ubuntu-latest, python: '3.8', arch: x64 } - { os: ubuntu-latest, python: '3.7', arch: x64 } - - { os: macos-latest, python: '3.10', arch: x64 } - - { os: macos-latest, python: '3.9', arch: x64 } - - { os: macos-latest, python: '3.8', arch: x64 } - - { os: macos-latest, python: '3.7', arch: x64 } + - { os: macos-10.15, python: '3.10', arch: x64 } + - { os: macos-10.15, python: '3.9', arch: x64 } + - { os: macos-10.15, python: '3.8', arch: x64 } + - { os: macos-10.15, python: '3.7', arch: x64 } - { os: windows-latest, python: '3.10', arch: x64 } - { os: windows-latest, python: '3.9', arch: x64 }