Skip to content

Commit 79e2527

Browse files
committed
do the python version properly
1 parent 5f5dff0 commit 79e2527

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/wheels.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,9 @@ jobs:
7272
path: wheelhouse
7373

7474
- name: Install wheel
75-
run: pip install wheelhouse/mach_beamform-*.whl
75+
run: |
76+
PYTHON_VERSION_NO_DOT=$(echo "${{ matrix.python-version }}" | tr -d '.')
77+
pip install wheelhouse/mach_beamform-*-cp${PYTHON_VERSION_NO_DOT}-*.whl
7678
7779
- name: Test import mach
7880
run: python -c 'import mach; print(mach.__version__)'

0 commit comments

Comments
 (0)