We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 976e978 commit 5f1af63Copy full SHA for 5f1af63
.github/workflows/main.yml
@@ -71,11 +71,13 @@ jobs:
71
enable-cache: true
72
cache-suffix: ${{ runner.os }}-${{ matrix.python }}-${{ matrix.build != '' && matrix.build || 'default' }}
73
- name: Install
74
+ shell: bash
75
# pyperformance must be installed:
76
# pyperformance/tests/test_compare.py imports it
77
run: |
- uv pip install --system --upgrade pip setuptools
78
- uv pip install --system -e .
+ PYTHON_BIN="$(python -c 'import sys; print(sys.executable)')"
79
+ uv pip install --python "$PYTHON_BIN" --upgrade pip setuptools
80
+ uv pip install --python "$PYTHON_BIN" -e .
81
- name: Display Python version
82
83
python -VV
0 commit comments