Skip to content

Commit 78f822b

Browse files
authored
Use uv to set up python version in tests (#574)
* Add free-thread Python 3.13 and preview Python 3.14 to test matrix * Setup python with uv? * No system uv
1 parent 1343252 commit 78f822b

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

.github/workflows/ci.yaml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -37,18 +37,15 @@ jobs:
3737
steps:
3838
- uses: actions/checkout@v4
3939

40-
- name: Set up Python ${{ matrix.python-version }}
41-
uses: actions/setup-python@v5
42-
with:
43-
python-version: ${{ matrix.python-version }}
44-
4540
- name: Install uv
4641
uses: astral-sh/setup-uv@v5
42+
with:
43+
python-version: ${{ matrix.python-version }}
4744

4845
- name: Install dependencies
4946
run: |
50-
uv pip install --system --upgrade '.[test,docs]'
51-
uv pip list --system
47+
uv pip install --upgrade '.[test,docs]'
48+
uv pip list
5249
5350
- name: Test with pytest
5451
run: |

0 commit comments

Comments
 (0)