We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c51a78d commit cddcef8Copy full SHA for cddcef8
.github/workflows/tests.yml
@@ -30,7 +30,7 @@ jobs:
30
include:
31
- os: macos-14
32
arch: arm64
33
- - os: macos-13
+ - os: macos-15-intel
34
arch: x86_64
35
- os: ubuntu-24.04-arm
36
arch: aarch64
@@ -43,15 +43,10 @@ jobs:
43
- uses: actions/setup-python@v5
44
with:
45
python-version: "3.13"
46
- - name: Install packages
47
- if: matrix.os == 'macos-13'
48
- run: |
49
- brew update
50
- brew install pkg-config
51
- name: Set Minimum MacOS Target
52
- if: matrix.os == 'macos-13' || matrix.os == 'macos-14'
+ if: runner.os == 'macOS'
53
run: |
54
- echo "MACOSX_DEPLOYMENT_TARGET=13.0" >> $GITHUB_ENV
+ echo "MACOSX_DEPLOYMENT_TARGET=14.0" >> $GITHUB_ENV
55
- name: Build wheels
56
env:
57
CIBW_ARCHS: ${{ matrix.arch }}
0 commit comments