Skip to content

Commit d299be8

Browse files
authored
Merge pull request #44 from PyO3/pypy-3.10
collect PyPy 3.10 dlls
2 parents 082aa90 + edc0b2f commit d299be8

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/dll.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@ jobs:
1616
- uses: actions/setup-python@v4
1717
with:
1818
python-version: "pypy3.9"
19+
- uses: actions/setup-python@v4
20+
with:
21+
python-version: "pypy3.10"
1922
- uses: actions/setup-python@v4
2023
with:
2124
python-version: "3.7"
@@ -49,7 +52,7 @@ jobs:
4952
cp "$PREFIX/libpypy3-c.dll" .
5053
5154
# PyPy 3.9 and later use libpypy3.Y-c.dll
52-
for VER in 3.9; do
55+
for VER in 3.9 3.10; do
5356
VER_NUM=$(echo $VER | sed 's/\.//')
5457
PREFIX=$(pypy$VER -c "import sys; print(sys.base_prefix, end='')")
5558
cp "$PREFIX/libpypy$VER-c.dll" .

0 commit comments

Comments
 (0)