|
45 | 45 | - name: Set Python to PATH |
46 | 46 | uses: actions/setup-python@v5 |
47 | 47 | with: |
48 | | - python-version: "3.x" |
| 48 | + python-version: "3.12" |
49 | 49 |
|
50 | 50 | - name: Homebrew Python |
51 | 51 | if: startsWith( matrix.os, 'macos') |
@@ -134,7 +134,7 @@ jobs: |
134 | 134 | if: startsWith( matrix.os, 'ubuntu') || startsWith( matrix.os, 'macos') |
135 | 135 | run: | |
136 | 136 | pyenv install --list |
137 | | - pyenv install 3.13.0 3.12.7 3.8.20 |
| 137 | + pyenv install 3.13.0 3.12.8 3.8.20 |
138 | 138 | shell: bash |
139 | 139 |
|
140 | 140 | # pyenv-win install list has not updated for a while |
@@ -248,7 +248,7 @@ jobs: |
248 | 248 | if: startsWith( matrix.feature, 'ci-poetry') |
249 | 249 | uses: actions/setup-python@v5 |
250 | 250 | with: |
251 | | - python-version: "3.x" |
| 251 | + python-version: "3.12" |
252 | 252 |
|
253 | 253 | - name: Set Python 3.12 to PATH |
254 | 254 | if: startsWith( matrix.feature, 'ci-poetry') |
@@ -304,48 +304,48 @@ jobs: |
304 | 304 | virtualenvs-path: ~/my-custom-path |
305 | 305 | installer-parallel: true |
306 | 306 |
|
307 | | - - name: Petry exe |
| 307 | + - name: Poetry exe |
308 | 308 | if: startsWith( matrix.feature, 'ci-poetry') |
309 | 309 | run: which poetry |
310 | 310 | shell: bash |
311 | 311 |
|
312 | | - - name: Petry config |
| 312 | + - name: Poetry config |
313 | 313 | if: startsWith( matrix.feature, 'ci-poetry') |
314 | 314 | run: poetry config --list |
315 | 315 | shell: bash |
316 | 316 |
|
317 | | - - name: Petry setup |
| 317 | + - name: Poetry setup |
318 | 318 | if: startsWith( matrix.feature, 'ci-poetry') |
319 | 319 | # We want to have 2 envs for this poetry project 3.12 and 3.11. |
320 | 320 | run: poetry init --name=pet-test --python=^3.11 -q -n |
321 | 321 | shell: bash |
322 | 322 |
|
323 | | - - name: Petry virtual env setup 3.12 |
| 323 | + - name: Poetry virtual env setup 3.12 |
324 | 324 | if: startsWith( matrix.feature, 'ci-poetry') && startsWith( matrix.os, 'ubuntu') |
325 | 325 | run: poetry env use 3.12 |
326 | 326 | shell: bash |
327 | 327 |
|
328 | | - - name: Petry virtual env setup 3.12 |
| 328 | + - name: Poetry virtual env setup 3.12 |
329 | 329 | if: startsWith( matrix.feature, 'ci-poetry') && startsWith( matrix.os, 'windows') |
330 | 330 | run: poetry env use $PYTHON_3_12_PATH |
331 | 331 | shell: bash |
332 | 332 |
|
333 | | - - name: Petry virtual env setup 3.11 |
| 333 | + - name: Poetry virtual env setup 3.11 |
334 | 334 | if: startsWith( matrix.feature, 'ci-poetry') && startsWith( matrix.os, 'ubuntu') |
335 | 335 | run: poetry env use 3.11 |
336 | 336 | shell: bash |
337 | 337 |
|
338 | | - - name: Petry virtual env setup 3.11 |
| 338 | + - name: Poetry virtual env setup 3.11 |
339 | 339 | if: startsWith( matrix.feature, 'ci-poetry') && startsWith( matrix.os, 'windows') |
340 | 340 | run: poetry env use $PYTHON_3_11_PATH |
341 | 341 | shell: bash |
342 | 342 |
|
343 | | - - name: Petry list envs |
| 343 | + - name: Poetry list envs |
344 | 344 | if: startsWith( matrix.feature, 'ci-poetry') |
345 | 345 | run: poetry env list |
346 | 346 | shell: bash |
347 | 347 |
|
348 | | - - name: Petry pyproject.toml |
| 348 | + - name: Poetry pyproject.toml |
349 | 349 | if: startsWith( matrix.feature, 'ci-poetry') |
350 | 350 | run: cat pyproject.toml |
351 | 351 | shell: bash |
@@ -414,7 +414,7 @@ jobs: |
414 | 414 | if: startsWith( matrix.image, 'homebrew') |
415 | 415 | run: | |
416 | 416 | # homebrew/brew:4.4.6 broke running `brew install` as root. |
417 | | - # As a workaround, running `brew update` and ignoring errors coming from it fixes `brew install`. |
| 417 | + # As a workaround, running `brew update` and ignoring errors coming from it fixes `brew install`. |
418 | 418 | brew update || true |
419 | 419 | |
420 | 420 | shell: bash |
|
0 commit comments