Skip to content

Commit 4136454

Browse files
committed
Extend matrix to filter for wheel corresponding to python version
Signed-off-by: Sahas Subramanian <[email protected]>
1 parent 582f094 commit 4136454

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

.github/workflows/ci.yaml

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -219,10 +219,14 @@ jobs:
219219
image: macos
220220
target: aarch64
221221
python:
222-
- "3.11"
223-
- "3.12"
224-
- "3.13"
225-
- "3.14"
222+
- semver: "3.11"
223+
wheelver: cp311
224+
- semver: "3.12"
225+
wheelver: cp312
226+
- semver: "3.13"
227+
wheelver: cp313
228+
- semver: "3.14"
229+
wheelver: cp314
226230
runs-on: ${{ matrix.platform.runner }}
227231

228232
steps:
@@ -256,8 +260,8 @@ jobs:
256260
- name: Setup Python
257261
uses: frequenz-floss/[email protected]
258262
with:
259-
python-version: ${{ matrix.python }}
260-
dependencies: dist/*.whl
263+
python-version: ${{ matrix.python.semver }}
264+
dependencies: dist/*${{ matrix.python.wheelver }}*.whl
261265

262266
- name: Print installed packages (debug)
263267
run: python -m pip freeze

0 commit comments

Comments
 (0)