Skip to content

Commit

Permalink
workflow: pin macos version to 10.15 for now
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
chrisjbillington committed Apr 7, 2023
1 parent 1f5c0c2 commit 59b23fd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Expand Up @@ -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 }
Expand Down

0 comments on commit 59b23fd

Please sign in to comment.