Skip to content

Commit 56a5d83

Browse files
committed
ci: Collect python313t.dll from free-threaded Python
1 parent 9006e33 commit 56a5d83

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/dll.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
name: Collect pythonXY.dll
88
runs-on: windows-latest
99
steps:
10-
- uses: actions/setup-python@v5
10+
- uses: Quansight-Labs/setup-python@v5
1111
with:
1212
python-version: |
1313
pypy3.8
@@ -20,12 +20,13 @@ jobs:
2020
3.11
2121
3.12
2222
3.13
23+
3.13t
2324
allow-prereleases: true
2425
- name: Copy pythonXY.dll
2526
shell: bash
2627
run: |
2728
set -e
28-
for VER in 3.7 3.8 3.9 3.10 3.11 3.12 3.13; do
29+
for VER in 3.7 3.8 3.9 3.10 3.11 3.12 3.13 3.13t; do
2930
VER_NUM=$(echo $VER | sed 's/\.//')
3031
PREFIX=$(py -$VER -c "import sys; print(sys.base_prefix, end='')")
3132
cp "$PREFIX/python$VER_NUM.dll" .

0 commit comments

Comments
 (0)