Skip to content
Merged
Show file tree
Hide file tree
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
20 changes: 12 additions & 8 deletions .github/workflows/_build-python-wheel-extension.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,18 +56,20 @@ jobs:
run:
shell: bash -l {0}

name: cibw-wheels-${{ inputs.python_version }}-${{ matrix.buildplat }}
name: cibw-wheels-${{ matrix.python }}-${{ matrix.buildplat }}
runs-on: ${{ matrix.buildplat }}
strategy:
fail-fast: false
matrix:
buildplat:
- ubuntu-latest
- macos-13
- macos-14
- macos-latest
- macos-15-intel
- windows-latest
python:
- ${{ inputs.python_version }}
- "3.12"
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Right now, these python verisons are hard coded. maybe during the winter break, we can maybe automate this if needed.

- "3.13"
- "3.14"

steps:
- name: Check out
Expand Down Expand Up @@ -160,18 +162,20 @@ jobs:
run:
shell: bash -l {0}

name: test-wheels-${{ inputs.python_version }}-${{ matrix.buildplat }}
name: test-wheels-${{ matrix.python }}-${{ matrix.buildplat }}
runs-on: ${{ matrix.buildplat }}
strategy:
fail-fast: false
matrix:
buildplat:
- ubuntu-latest
- macos-13
- macos-14
- macos-latest
- macos-15-intel
- windows-latest
python:
- ${{ inputs.python_version }}
- "3.12"
- "3.13"
- "3.14"

steps:
- name: Check out
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/_build-wheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,3 @@ jobs:
with:
project: ${{ inputs.project }}
python_version: ${{ inputs.python_version }}

# anything else
2 changes: 1 addition & 1 deletion .github/workflows/_matrix-and-codecov-on-merge-to-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-13, macos-14]
os: [ubuntu-latest, windows-latest, macos-latest, macos-15-intel]
python-version: ${{ fromJson(needs.get-python-versions.outputs.python_versions_json) }}
steps:
- name: Get the latest Python version from the matrix
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/_matrix-no-codecov-on-merge-to-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-13, macos-14]
os: [ubuntu-latest, windows-latest, macos-latest, macos-15-intel]
python-version: ${{ fromJson(needs.get-python-versions.outputs.python_versions_json) }}
steps:
- name: Get the latest Python version from the matrix
Expand Down