Skip to content

Commit 2d755e8

Browse files
committed
Simplify things
1 parent 10f4db0 commit 2d755e8

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -168,18 +168,18 @@ jobs:
168168
strategy:
169169
fail-fast: false
170170
matrix:
171-
python: ['cpython-3.10', 'cpython-3.11', 'cpython-3.12', 'cpython-3.13', 'cpython-3.14', 'cpython-3.14+freethreaded']
171+
python: ['3.10', '3.11', '3.12', '3.13', '3.14', '3.14+freethreaded']
172172
arch: ['x86', 'x86_64']
173173
lsp: ['']
174174
lsp_extract_file: ['']
175175
extra_name: ['']
176176
include:
177-
- python: 'cpython-3.10'
177+
- python: '3.10'
178178
arch: 'x86_64'
179179
lsp: 'https://raw.githubusercontent.com/python-trio/trio-ci-assets/master/komodia-based-vpn-setup.zip'
180180
lsp_extract_file: 'komodia-based-vpn-setup.exe'
181181
extra_name: ', with Komodia LSP'
182-
- python: 'cpython-3.10'
182+
- python: '3.10'
183183
arch: 'x86_64'
184184
lsp: 'https://www.proxifier.com/download/legacy/ProxifierSetup342.exe'
185185
lsp_extract_file: ''
@@ -213,7 +213,7 @@ jobs:
213213
- name: Setup Python
214214
uses: astral-sh/[email protected]
215215
with:
216-
python-version: '${{ matrix.python }}-windows-${{ matrix.arch }}-none'
216+
python-version: '${{ case(startsWith(matrix.python-version, "pypy"), matrix.python-version, format("cpython-{0}", matrix.python-version)) }}-windows-${{ matrix.arch }}-none'
217217
activate-environment: "true"
218218
- run: uv pip install pip
219219
- name: Run tests

0 commit comments

Comments
 (0)