Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 13 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,21 @@ jobs:
- "3.9"
- "3.10"
- "3.11"
# Workaround from https://github.com/actions/runner-images/issues/9770
exclude: # Python < v3.8 does not support Apple Silicon ARM64.
- python: "3.6"
os: macos-latest
- python: "3.7"
os: macos-latest
include: # So run those legacy versions on Intel CPUs.
- python: "3.6"
os: macos-13
- python: "3.7"
os: macos-13
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Setup python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Install tox
Expand Down