You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- uses: {% data reusables.actions.action-checkout %}
@@ -151,7 +151,7 @@ jobs:
151
151
152
152
### Using a specific Python version
153
153
154
-
You can configure a specific version of Python. For example, 3.10. Alternatively, you can use semantic version syntax to get the latest minor release. This example uses the latest minor release of Python 3.
154
+
You can configure a specific version of Python. For example, 3.12. Alternatively, you can use semantic version syntax to get the latest minor release. This example uses the latest minor release of Python 3.
155
155
156
156
```yaml copy
157
157
name: Python package
@@ -180,7 +180,7 @@ jobs:
180
180
181
181
### Excluding a version
182
182
183
-
If you specify a version of Python that is not available, `setup-python` fails with an error such as: `##[error]Version 3.6 with arch x64 not found`. The error message includes the available versions.
183
+
If you specify a version of Python that is not available, `setup-python` fails with an error such as: `##[error]Version 3.7 with arch x64 not found`. The error message includes the available versions.
184
184
185
185
You can also use the `exclude` keyword in your workflow if there is a configuration of Python that you do not wish to run. For more information, see "[AUTOTITLE](/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstrategy)."
The linting step has `continue-on-error: true` set. This will keep the workflow from failing if the linting step doesn't succeed. Once you've addressed all of the linting errors, you can remove this option so the workflow will catch new issues.
317
+
The formatting step has `continue-on-error: true` set. This will keep the workflow from failing if the formatting step doesn't succeed. Once you've addressed all of the formatting errors, you can remove this option so the workflow will catch new issues.
320
318
321
319
### Running tests with tox
322
320
@@ -333,7 +331,7 @@ jobs:
333
331
runs-on: ubuntu-latest
334
332
strategy:
335
333
matrix:
336
-
python: ["3.9", "3.10", "3.11"]
334
+
python: ["3.9", "3.11", "3.13"]
337
335
338
336
steps:
339
337
- uses: {% data reusables.actions.action-checkout %}
0 commit comments