1
0
Fork 0
mirror of https://code.forgejo.org/actions/setup-python synced 2025-06-15 23:44:09 +02:00

Remove support for syntax like '3.14.0a1'

This commit is contained in:
Sam Gross 2025-02-10 18:13:21 +00:00
parent 8f1f09d543
commit bdd8c56024
4 changed files with 12 additions and 53 deletions

View file

@ -77,7 +77,7 @@ steps:
- run: python my_script.py
```
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. Pre-release free threading versions can be specified like `3.14.0a3t` or `3.14t-dev`.
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. Pre-release free threading versions can be specified like `3.14t-dev`.
Free threaded Python is only available starting with the 3.13 release.
```yaml