Skip to content

Commit f1dbe33

Browse files
committed
Test on free-threaded Python
See #2005. Right now, this does not limit by operating system, but that is just to verify that there are no OS-specific 3.13t problems we should know about right now; once that is verified, the macOS and Windows jobs will be removed (excluded) for the time being. The 3.13t jobs added here use `Quansight-Labs/setup-python`, not `actions/setup-python`. The latter also has the ability to use 3.13t since actions/python-versions#319 and actions/setup-python#973 (see also actions/setup-python#771), but no version tag includes this feature yet. It can be used by using `@main` or `@...` where `...` is an OID. The former would risk pulling in other untested features we're no trying to test with, while the latter would not be easy to upgrade automatically as what we have now (we would be deliberately keeping a hash not at any tag that is already not the latest hash on any branch). In contrast, the `Quansight-Labs/setup-python` fork adds this feature while staying up to date with others. When `actions/setup-python` has a release (stable or prerelease) with this feature, we can switch to it. This could probably be done with less code duplication by using a matrix variable for the action to use. Instead, the "Set up Python" step is split in two, with opposite `if` conditions, so that each is capable of being recognized and upgraded by Dependabot if a new major version is released (in case this ends up remaining in place longer than expected).
1 parent fe7533e commit f1dbe33

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.github/workflows/pythonpackage.yml

+10-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
matrix:
1515
os-type: [ubuntu, macos, windows]
16-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
16+
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.13t"]
1717
exclude:
1818
- os-type: macos
1919
python-version: "3.7" # Not available for the ARM-based macOS runners.
@@ -40,11 +40,20 @@ jobs:
4040
fetch-depth: 0
4141

4242
- name: Set up Python ${{ matrix.python-version }}
43+
if: |-
44+
!endsWith(matrix.python-version, 't')
4345
uses: actions/setup-python@v5
4446
with:
4547
python-version: ${{ matrix.python-version }}
4648
allow-prereleases: ${{ matrix.experimental }}
4749

50+
- name: Set up Python ${{ matrix.python-version }} (free-threaded)
51+
if: endsWith(matrix.python-version, 't')
52+
uses: Quansight-Labs/setup-python@v5
53+
with:
54+
python-version: ${{ matrix.python-version }}
55+
allow-prereleases: ${{ matrix.experimental }}
56+
4857
- name: Set up WSL (Windows)
4958
if: matrix.os-type == 'windows'
5059
uses: Vampire/[email protected]

0 commit comments

Comments
 (0)