Skip to content

Commit 9ab7432

Browse files
authored
Merge pull request #209 from bobleesj/pdffit2-pythons
ci: pdffit2 - use Python 3.12, 3.13, 3.14 builds for release
2 parents 8a808c7 + 5dab1bc commit 9ab7432

4 files changed

Lines changed: 14 additions & 12 deletions

File tree

.github/workflows/_build-python-wheel-extension.yml

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -56,18 +56,20 @@ jobs:
5656
run:
5757
shell: bash -l {0}
5858

59-
name: cibw-wheels-${{ inputs.python_version }}-${{ matrix.buildplat }}
59+
name: cibw-wheels-${{ matrix.python }}-${{ matrix.buildplat }}
6060
runs-on: ${{ matrix.buildplat }}
6161
strategy:
6262
fail-fast: false
6363
matrix:
6464
buildplat:
6565
- ubuntu-latest
66-
- macos-13
67-
- macos-14
66+
- macos-latest
67+
- macos-15-intel
6868
- windows-latest
6969
python:
70-
- ${{ inputs.python_version }}
70+
- "3.12"
71+
- "3.13"
72+
- "3.14"
7173

7274
steps:
7375
- name: Check out
@@ -160,18 +162,20 @@ jobs:
160162
run:
161163
shell: bash -l {0}
162164

163-
name: test-wheels-${{ inputs.python_version }}-${{ matrix.buildplat }}
165+
name: test-wheels-${{ matrix.python }}-${{ matrix.buildplat }}
164166
runs-on: ${{ matrix.buildplat }}
165167
strategy:
166168
fail-fast: false
167169
matrix:
168170
buildplat:
169171
- ubuntu-latest
170-
- macos-13
171-
- macos-14
172+
- macos-latest
173+
- macos-15-intel
172174
- windows-latest
173175
python:
174-
- ${{ inputs.python_version }}
176+
- "3.12"
177+
- "3.13"
178+
- "3.14"
175179

176180
steps:
177181
- name: Check out

.github/workflows/_build-wheel.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,3 @@ jobs:
3131
with:
3232
project: ${{ inputs.project }}
3333
python_version: ${{ inputs.python_version }}
34-
35-
# anything else

.github/workflows/_matrix-and-codecov-on-merge-to-main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
strategy:
5050
fail-fast: false
5151
matrix:
52-
os: [ubuntu-latest, windows-latest, macos-13, macos-14]
52+
os: [ubuntu-latest, windows-latest, macos-latest, macos-15-intel]
5353
python-version: ${{ fromJson(needs.get-python-versions.outputs.python_versions_json) }}
5454
steps:
5555
- name: Get the latest Python version from the matrix

.github/workflows/_matrix-no-codecov-on-merge-to-main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
strategy:
4646
fail-fast: false
4747
matrix:
48-
os: [ubuntu-latest, windows-latest, macos-13, macos-14]
48+
os: [ubuntu-latest, windows-latest, macos-latest, macos-15-intel]
4949
python-version: ${{ fromJson(needs.get-python-versions.outputs.python_versions_json) }}
5050
steps:
5151
- name: Get the latest Python version from the matrix

0 commit comments

Comments
 (0)