We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
python313t.dll
1 parent ca5ab09 commit 8e9b33bCopy full SHA for 8e9b33b
.github/workflows/dll.yml
@@ -7,7 +7,7 @@ jobs:
7
name: Collect pythonXY.dll
8
runs-on: windows-latest
9
steps:
10
- - uses: actions/setup-python@v5
+ - uses: Quansight-Labs/setup-python@v5
11
with:
12
python-version: |
13
pypy3.8
@@ -20,12 +20,13 @@ jobs:
20
3.11
21
3.12
22
3.13
23
+ 3.13t
24
allow-prereleases: true
25
- name: Copy pythonXY.dll
26
shell: bash
27
run: |
28
set -e
- 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
30
VER_NUM=$(echo $VER | sed 's/\.//')
31
PREFIX=$(py -$VER -c "import sys; print(sys.base_prefix, end='')")
32
cp "$PREFIX/python$VER_NUM.dll" .
0 commit comments