|
60 | 60 | - uses: actions/checkout@v3 |
61 | 61 | - uses: actions/setup-python@v4 |
62 | 62 | with: |
63 | | - python-version: '3.11.0-alpha.1' |
| 63 | + python-version: '3.12.0-alpha.1' |
64 | 64 | - run: python my_script.py |
65 | 65 | ``` |
66 | 66 |
|
|
71 | 71 | - uses: actions/checkout@v3 |
72 | 72 | - uses: actions/setup-python@v4 |
73 | 73 | with: |
74 | | - python-version: '3.11-dev' |
| 74 | + python-version: '3.12-dev' |
75 | 75 | - run: python my_script.py |
76 | 76 | ``` |
77 | 77 |
|
|
84 | 84 | - uses: actions/checkout@v3 |
85 | 85 | - uses: actions/setup-python@v4 |
86 | 86 | with: |
87 | | - python-version: '3.11.0-alpha - 3.11.0' |
| 87 | + python-version: '3.12.0-alpha - 3.12.0' |
88 | 88 | - run: python my_script.py |
89 | 89 | ``` |
90 | 90 |
|
@@ -447,7 +447,7 @@ Such a requirement on side-effect could be because you don't want your composite |
447 | 447 | - For every minor version of Python, expect only the latest patch to be preinstalled. |
448 | 448 | - If `3.8.1` is installed for example, and `3.8.2` is released, expect `3.8.1` to be removed and replaced by `3.8.2` in the tool cache. |
449 | 449 | - If the exact patch version doesn't matter to you, specifying just the major and minor versions will get you the latest preinstalled patch version. In the previous example, the version spec `3.8` will use the `3.8.2` Python version found in the cache. |
450 | | - - Use `-dev` instead of a patch number (e.g., `3.11-dev`) to install the latest patch version release for a given minor version, *alpha and beta releases included*. |
| 450 | + - Use `-dev` instead of a patch number (e.g., `3.12-dev`) to install the latest patch version release for a given minor version, *alpha and beta releases included*. |
451 | 451 | - Downloadable Python versions from GitHub Releases ([actions/python-versions](https://github.com/actions/python-versions/releases)). |
452 | 452 | - All available versions are listed in the [version-manifest.json](https://github.com/actions/python-versions/blob/main/versions-manifest.json) file. |
453 | 453 | - If there is a specific version of Python that is not available, you can open an issue here |
|
0 commit comments