Skip to content

Commit

Permalink
Try to fix the Python build in CI on macOS for Python <3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
miikka committed Aug 6, 2024
1 parent 91de87c commit dfb28a1
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/publish-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,13 +62,14 @@ jobs:
print-hash: true

macos:
runs-on: macos-latest
# actions/setup-python with Python <3.11 does not work with macos-latest
runs-on: macos-13
needs:
- should-publish
if: needs.should-publish.outputs.is_new_version == 'yes'
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9, "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
with:
Expand Down

0 comments on commit dfb28a1

Please sign in to comment.