Skip to content

Commit 518dded

Browse files
committed
Install Python from GitHubActions instead of uv
1 parent 22f5873 commit 518dded

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,10 @@ jobs:
2222
uses: astral-sh/setup-uv@v3
2323

2424
- name: Set up Python ${{ matrix.python-version }}
25-
run: uv python install ${{ matrix.python-version }}
25+
uses: actions/setup-python@v5
26+
with:
27+
python-version: ${{ matrix.python-version }}
28+
allow-prereleases: true
2629

2730
- name: Install the project
2831
run: uv sync --all-extras --dev

0 commit comments

Comments
 (0)