Skip to content

Commit

Permalink
Build: Use system Py2.7 on macOS since actions/setup-python does not …
Browse files Browse the repository at this point in the history
…have it any more.
  • Loading branch information
scoder committed Jan 28, 2024
1 parent 105f91a commit 7ee69c3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ jobs:

matrix:
os:
- macos-latest
- macos-11
- windows-latest
#os: [macos-11, windows-latest, macOS-M1]
#os: [macos-11, macOS-M1]
Expand Down Expand Up @@ -252,6 +252,8 @@ jobs:

- name: Set up Python
uses: actions/setup-python@v4
# macOS has Py2.7 installed system wide
if: matrix.pyversion != "2.7"
with:
python-version: ${{ matrix.pyversion }}

Expand Down

0 comments on commit 7ee69c3

Please sign in to comment.