Skip to content

Commit

Permalink
Fix CI for python 3.7 on macOS
Browse files Browse the repository at this point in the history
  • Loading branch information
Tony-Y committed Apr 29, 2024
1 parent 0f447a3 commit ce1b501
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/example-plots.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,15 @@ jobs:
matrix:
python-version: [3.7, 3.8]
os: [macos-latest, windows-latest, ubuntu-latest]
# Use the macos-13 runner for 3.7, since 3.7 is not currently available
# on ARM64 macOS runners (i.e. 14+).
# See: https://github.com/actions/setup-python/issues/856
exclude:
- python-version: "3.7"
os: "macos-latest"
include:
- python-version: "3.7"
os: "macos-13"

steps:
- uses: actions/checkout@v4
Expand Down
9 changes: 9 additions & 0 deletions .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,15 @@ jobs:
matrix:
python-version: [3.7, 3.8]
os: [macos-latest, windows-latest, ubuntu-latest]
# Use the macos-13 runner for 3.7, since 3.7 is not currently available
# on ARM64 macOS runners (i.e. 14+).
# See: https://github.com/actions/setup-python/issues/856
exclude:
- python-version: "3.7"
os: "macos-latest"
include:
- python-version: "3.7"
os: "macos-13"

steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit ce1b501

Please sign in to comment.