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
Support free threaded Python versions like '3.13t' (#973)
* Support free threaded Python versions like '3.13t'
Python wheels, pyenv, and a number of other tools use 't' in the Python
version number to identify free threaded builds. For example, '3.13t',
'3.14.0a1', '3.14t-dev'.
This PR supports that syntax in `actions/setup-python`, strips the "t",
and adds "-freethreading" to the architecture to select the correct
Python version.
See #771
* Add free threading to advanced usage documentation
* Fix desugaring of `3.13.1t` and add test case.
* Add freethreaded input and fix handling of prerelease versions
* Fix lint
* Add 't' suffix to python-version output
* Use distinct cache key for free threaded Python
* Remove support for syntax like '3.14.0a1'
* Clarify use of 't' suffix
* Improve error message when trying to use free threaded Python versions before 3.13
Copy file name to clipboardexpand all lines: README.md
+10
Original file line number
Diff line number
Diff line change
@@ -45,6 +45,16 @@ steps:
45
45
- run: python my_script.py
46
46
```
47
47
48
+
**Free threaded Python**
49
+
```yaml
50
+
steps:
51
+
- uses: actions/checkout@v4
52
+
- uses: actions/setup-python@v5
53
+
with:
54
+
python-version: '3.13t'
55
+
- run: python my_script.py
56
+
```
57
+
48
58
The `python-version` input is optional. If not supplied, the action will try to resolve the version from the default `.python-version` file. If the `.python-version` file doesn't exist Python or PyPy version from the PATH will be used. The default version of Python or PyPy in PATH varies between runners and can be changed unexpectedly so we recommend always setting Python version explicitly using the `python-version` or `python-version-file` inputs.
49
59
50
60
The action will first check the local [tool cache](docs/advanced-usage.md#hosted-tool-cache) for a [semver](https://github.com/npm/node-semver#versions) match. If unable to find a specific version in the tool cache, the action will attempt to download a version of Python from [GitHub Releases](https://github.com/actions/python-versions/releases) and for PyPy from the official [PyPy's dist](https://downloads.python.org/pypy/).
Copy file name to clipboardexpand all lines: action.yml
+3
Original file line number
Diff line number
Diff line change
@@ -26,6 +26,9 @@ inputs:
26
26
allow-prereleases:
27
27
description: "When 'true', a version range passed to 'python-version' input will match prerelease versions if no GA versions are found. Only 'x.y' version range is supported for CPython."
28
28
default: false
29
+
freethreaded:
30
+
description: "When 'true', use the freethreaded version of Python."
31
+
default: false
29
32
outputs:
30
33
python-version:
31
34
description: "The installed Python or PyPy version. Useful when given a version range as input."
core.warning('The support for python 2.7 was removed on June 19, 2023. Related issue: https://github.com/actions/setup-python/issues/672');
Copy file name to clipboardexpand all lines: docs/advanced-usage.md
+25
Original file line number
Diff line number
Diff line change
@@ -77,6 +77,31 @@ steps:
77
77
- run: python my_script.py
78
78
```
79
79
80
+
You can specify the [free threading](https://docs.python.org/3/howto/free-threading-python.html) version of Python by setting the `freethreaded` input to `true` or by using the special **t** suffix in some cases.
81
+
You can use the **t** suffix when specifying the major and minor version (e.g., `3.13t`), with a patch version (e.g., `3.13.1t`), or with the **x.y-dev syntax** (e.g., `3.14t-dev`).
82
+
Free threaded Python is only available starting with the 3.13 release.
83
+
84
+
```yaml
85
+
steps:
86
+
- uses: actions/checkout@v4
87
+
- uses: actions/setup-python@v5
88
+
with:
89
+
python-version: '3.13t'
90
+
- run: python my_script.py
91
+
```
92
+
93
+
Note that the **t** suffix is not `semver` syntax. If you wish to specify a range, you must use the `freethreaded` input instead of the `t` suffix.
94
+
95
+
```yaml
96
+
steps:
97
+
- uses: actions/checkout@v4
98
+
- uses: actions/setup-python@v5
99
+
with:
100
+
python-version: '>=3.13'
101
+
freethreaded: true
102
+
- run: python my_script.py
103
+
```
104
+
80
105
You can also use several types of ranges that are specified in [semver](https://github.com/npm/node-semver#ranges), for instance:
81
106
82
107
- **[ranges](https://github.com/npm/node-semver#ranges)** to download and set up the latest available version of Python satisfying a range:
0 commit comments