We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent efd23ae commit fd68007Copy full SHA for fd68007
1 file changed
.github/workflows/CI.yml
@@ -51,7 +51,8 @@ jobs:
51
run: ls -l dist/
52
- name: Install wheel
53
run: |
54
- WHEEL=$(ls dist/*.whl | grep "cp${{ replace(matrix.python-version, '.', '') }}-")
+ VERSION="${{ replace(matrix.python-version, '.', '') }}"
55
+ WHEEL=$(ls dist/*.whl | grep "cp${VERSION}-")
56
echo "Installing wheel: $WHEEL"
57
pip install "$WHEEL"
58
- name: Run tests
0 commit comments