Skip to content

Commit

Permalink
ci: use specific OS versions while building Python extensions
Browse files Browse the repository at this point in the history
The creation of Python packages started failing with the following error:

```
yara_x.pypy38-pp73-darwin.so has a minimum target of 10.12
  Set the environment variable 'MACOSX_DEPLOYMENT_TARGET=10.12' to update minimum supported macOS for this wheel.
```
  • Loading branch information
plusvic committed Nov 29, 2024
1 parent ed0f985 commit f397b31
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -107,14 +107,14 @@ jobs:
- windows
include:
- build: linux
os: ubuntu-latest
os: ubuntu-22.04

- build: macos
os: macos-latest
os: macos-13
arch: 'arm64 x86_64'

- build: windows
os: windows-latest
os: windows-2022
arch: 'x86 AMD64'

steps:
Expand Down

0 comments on commit f397b31

Please sign in to comment.