File tree 1 file changed +5
-2
lines changed
1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change 59
59
name : ' py${{ matrix.python-version }}: ${{ matrix.platform }}'
60
60
runs-on : ${{ matrix.os }}
61
61
timeout-minutes : 15 # expected run time: 2-6 min, depending on platform
62
+ env :
63
+ PIP_USE_PEP517 : ' 1'
64
+ UV_SYSTEM_PYTHON : 1
62
65
63
66
steps :
64
67
- name : checkout
@@ -86,13 +89,13 @@ jobs:
86
89
87
90
- name : install python
88
91
if : ${{ steps.changed-files.outputs.python_any_changed == 'true' || inputs.always_run == true }}
89
- run : uv python install ${{ matrix.python-version }} --preview --verbose
92
+ run : uv python install ${{ matrix.python-version }}
90
93
91
94
- name : install dependencies
92
95
if : ${{ steps.changed-files.outputs.python_any_changed == 'true' || inputs.always_run == true }}
93
96
env :
94
97
UV_INDEX : ${{ matrix.extra-index-url }}
95
- run : uv pip install --editable ".[test]" --system --verbose
98
+ run : uv pip install --editable ".[test]"
96
99
97
100
- name : run pytest
98
101
if : ${{ steps.changed-files.outputs.python_any_changed == 'true' || inputs.always_run == true }}
You can’t perform that action at this time.
0 commit comments