Skip to content

Commit 59b23fd

Browse files
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.
1 parent 1f5c0c2 commit 59b23fd

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,10 @@ jobs:
4242
- { os: ubuntu-latest, python: '3.8', arch: x64 }
4343
- { os: ubuntu-latest, python: '3.7', arch: x64 }
4444

45-
- { os: macos-latest, python: '3.10', arch: x64 }
46-
- { os: macos-latest, python: '3.9', arch: x64 }
47-
- { os: macos-latest, python: '3.8', arch: x64 }
48-
- { os: macos-latest, python: '3.7', arch: x64 }
45+
- { os: macos-10.15, python: '3.10', arch: x64 }
46+
- { os: macos-10.15, python: '3.9', arch: x64 }
47+
- { os: macos-10.15, python: '3.8', arch: x64 }
48+
- { os: macos-10.15, python: '3.7', arch: x64 }
4949

5050
- { os: windows-latest, python: '3.10', arch: x64 }
5151
- { os: windows-latest, python: '3.9', arch: x64 }

0 commit comments

Comments
 (0)