Skip to content

Commit 05bb7a3

Browse files
Revert "cI: attempt again again to use uv to install python"
This reverts commit 3cba861.
1 parent 3cba861 commit 05bb7a3

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

Diff for: .github/workflows/python-tests.yml

+5-2
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,9 @@ jobs:
5959
name: 'py${{ matrix.python-version }}: ${{ matrix.platform }}'
6060
runs-on: ${{ matrix.os }}
6161
timeout-minutes: 15 # expected run time: 2-6 min, depending on platform
62+
env:
63+
PIP_USE_PEP517: '1'
64+
UV_SYSTEM_PYTHON: 1
6265

6366
steps:
6467
- name: checkout
@@ -86,13 +89,13 @@ jobs:
8689

8790
- name: install python
8891
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 }}
9093

9194
- name: install dependencies
9295
if: ${{ steps.changed-files.outputs.python_any_changed == 'true' || inputs.always_run == true }}
9396
env:
9497
UV_INDEX: ${{ matrix.extra-index-url }}
95-
run: uv pip install --editable ".[test]" --system --verbose
98+
run: uv pip install --editable ".[test]"
9699

97100
- name: run pytest
98101
if: ${{ steps.changed-files.outputs.python_any_changed == 'true' || inputs.always_run == true }}

0 commit comments

Comments
 (0)