Skip to content

Commit db139d6

Browse files
committed
ci: don't shadow python versions with uv
1 parent 61bad2f commit db139d6

File tree

1 file changed

+17
-5
lines changed

1 file changed

+17
-5
lines changed

.github/workflows/ci.yml

+17-5
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,15 @@ jobs:
3131
target: aarch64
3232
steps:
3333
- uses: actions/checkout@v4
34-
- uses: actions/setup-python@v5
35-
with:
36-
python-version: "3.12"
3734
- name: Install uv
3835
uses: astral-sh/setup-uv@v5
36+
- uses: actions/setup-python@v5
37+
with:
38+
python-version: |
39+
3.10
40+
3.11
41+
3.12
42+
3.13
3943
- name: Build wheels
4044
uses: PyO3/maturin-action@v1
4145
with:
@@ -160,7 +164,11 @@ jobs:
160164
- uses: actions/checkout@v4
161165
- uses: actions/setup-python@v5
162166
with:
163-
python-version: "3.12"
167+
python-version: |
168+
3.10
169+
3.11
170+
3.12
171+
3.13
164172
architecture: ${{ matrix.platform.target }}
165173
- name: Install uv
166174
uses: astral-sh/setup-uv@v5
@@ -211,7 +219,11 @@ jobs:
211219
- uses: actions/checkout@v4
212220
- uses: actions/setup-python@v5
213221
with:
214-
python-version: "3.12"
222+
python-version: |
223+
3.10
224+
3.11
225+
3.12
226+
3.13
215227
- name: Install uv
216228
uses: astral-sh/setup-uv@v5
217229
- uses: maxim-lobanov/setup-xcode@v1

0 commit comments

Comments
 (0)