<!--- Please direct any generic questions related to actions to our support community forum at https://github.community/c/code-to-cloud/github-actions/41 ---> <!--- Before opening up a new feature request, please make sure to check for similar existing issues and pull requests --> **Description:** Please make Python 3.13 available, built with the `--disable-gil` flag. **Justification:** Thank you for actions/setup-python and especially for making it possible to test new pre-releases, and final releases within a day or so of their official release. (And see [here](https://mastodon.social/@hugovk/111328353418877342) how well GitHub Actions compares to other CI services :) [PEP 703](https://peps.python.org/pep-0703/) has been [accepted](https://discuss.python.org/t/pep-703-making-the-global-interpreter-lock-optional-in-cpython-acceptance/37075) to remove the GIL. The rollout is planned in three phases, and for success, it's extremely important to get community feedback and support to be able to move to the next phase. Therefore it's also extremely important for the community to be able to test the "free-threaded" aka "nogil" builds of Python. This requires a separate build of 3.13 with the `--disable-gil` flag enabled for the configure script (see the [PEP](https://peps.python.org/pep-0703/#build-configuration-changes) and [CPython CI](https://github.com/search?q=repo%3Apython%2Fcpython+--disable-gil+language%3AYAML&type=code)). To achieve this, it would be very helpful if actions/setup-python also provided free-threaded builds for 3.13 (and later) to enable the community to try them out and give feedback, perhaps via `with: disable-gil: true`. It's still a bit early for extension authors to start testing, but it would be great to have the testing infra ready for when the time comes. Would this be possible? **Are you willing to submit a PR?** <!--- We accept contributions! --> Yes.