Skip to content

Commit

Permalink
Temporarily limit to macos 13 (#235)
Browse files Browse the repository at this point in the history
  • Loading branch information
wjsi authored May 13, 2024
1 parent af6e1e4 commit fbf46bb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pypi-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
os: [ubuntu-latest, macos-13, windows-latest]
arch: [auto]
include:
- os: ubuntu-latest
arch: aarch64
- os: macos-latest
- os: macos-13
arch: universal2

steps:
Expand Down Expand Up @@ -48,7 +48,7 @@ jobs:

- name: Install Python
uses: actions/setup-python@v4
if: ${{ matrix.os == 'macos-latest'}}
if: ${{ startsWith(matrix.os, 'macos-') }}
with:
python-version: '3.7'

Expand Down

0 comments on commit fbf46bb

Please sign in to comment.