diff --git a/.github/scripts/find_compatible_wheel.py b/.github/scripts/find_compatible_wheel.py index a2e51e7f..99343631 100644 --- a/.github/scripts/find_compatible_wheel.py +++ b/.github/scripts/find_compatible_wheel.py @@ -27,7 +27,7 @@ break elif len(matches) > 1: print( - "Found multiple matches for the same tag " + str(tag), + f"Found multiple matches for the same tag `{tag}`", matches, file=sys.stderr, ) diff --git a/.github/workflows/python-build-test.yaml b/.github/workflows/python-build-test.yaml index 6e922e57..77c72daf 100644 --- a/.github/workflows/python-build-test.yaml +++ b/.github/workflows/python-build-test.yaml @@ -205,6 +205,7 @@ jobs: - name: Install pylace if: ${{ matrix.target != 'aarch64' }} run: | + python -sS -c "import platform; print(platform.mac_ver())" ls -l ./dist WHEEL_FILE=$(python3 .github/scripts/find_compatible_wheel.py pylace ./dist) echo "Installing $WHEEL_FILE"