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.
1 parent 082aa90 commit edc0b2fCopy full SHA for edc0b2f
.github/workflows/dll.yml
@@ -16,6 +16,9 @@ jobs:
16
- uses: actions/setup-python@v4
17
with:
18
python-version: "pypy3.9"
19
+ - uses: actions/setup-python@v4
20
+ with:
21
+ python-version: "pypy3.10"
22
23
24
python-version: "3.7"
@@ -49,7 +52,7 @@ jobs:
49
52
cp "$PREFIX/libpypy3-c.dll" .
50
53
51
54
# PyPy 3.9 and later use libpypy3.Y-c.dll
- for VER in 3.9; do
55
+ for VER in 3.9 3.10; do
56
VER_NUM=$(echo $VER | sed 's/\.//')
57
PREFIX=$(pypy$VER -c "import sys; print(sys.base_prefix, end='')")
58
cp "$PREFIX/libpypy$VER-c.dll" .
0 commit comments