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 3f5b8d1 commit 68a1695Copy full SHA for 68a1695
.github/workflows/ci.yml
@@ -20,8 +20,14 @@ jobs:
20
runs-on: ${{ matrix.os }}
21
strategy:
22
matrix:
23
- os: [macos-latest, ubuntu-latest]
+ # Use macos-13 because pip binary packages for ARM aren't
24
+ # available for many dependencies
25
+ os: [macos-13, ubuntu-latest]
26
python-version: ["3.9", "3.10", "3.11"]
27
+ exclude:
28
+ # Just run macos tests on one Python version
29
+ - os: macos-13
30
+ python-version: ["3.9", "3.11"]
31
steps:
32
- uses: actions/checkout@v4
33
- name: Set up Python ${{ matrix.python-version }}
0 commit comments