Skip to content

Commit

Permalink
Fix installer
Browse files Browse the repository at this point in the history
  • Loading branch information
JCGoran committed Nov 1, 2024
1 parent 8fb2bb8 commit ff45e35
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,19 +16,21 @@ jobs:
strategy:
matrix:
os: [macos-14]
python-version:
- '3.9'
- '3.10'
- '3.11'
- '3.12'
include:
- python-version: '3.8'
python-org-version: '3.8.9'
python-installer: 'macosx10.9.pkg'
- python-version: '3.9'
python-org-version: '3.9.13'
python-installer: 'macos11.pkg'
- python-version: '3.10'
python-org-version: '3.10.11'
python-installer: 'macos11.pkg'
- python-version: '3.11'
python-org-version: '3.11.7'
python-installer: 'macos11.pkg'
- python-version: '3.12'
python-org-version: '3.12.0'
python-installer: 'macos11.pkg'

steps:
Expand All @@ -37,8 +39,8 @@ jobs:

- name: Install Python from python.org
run: |
installer="python-${{ matrix.python-version }}-${{ matrix.python-installer }}"
url="https://www.python.org/ftp/python/${{ matrix.python-version }}/${installer}"
installer="python-${{ matrix.python-org-version }}-${{ matrix.python-installer }}"
url="https://www.python.org/ftp/python/${{ matrix.python-org-version }}/${installer}"
curl -LO $url
sudo installer -pkg $installer -target /
Expand Down

0 comments on commit ff45e35

Please sign in to comment.