Skip to content

Commit 0b6afb3

Browse files
committed
Add pypy sysconfig debugging step
1 parent 693346c commit 0b6afb3

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,8 @@ jobs:
8585
strategy:
8686
fail-fast: false
8787
matrix:
88-
os: ["ubuntu-latest", "ubuntu-24.04-arm", "macos-latest", "windows-latest"]
89-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14", "pypy3.9", "pypy3.10"]
88+
os: ["windows-latest"]
89+
python-version: ["pypy3.9", "pypy3.10"]
9090
steps:
9191
- uses: actions/checkout@v4
9292
with:
@@ -95,6 +95,9 @@ jobs:
9595
uses: actions/setup-python@v6
9696
with:
9797
python-version: ${{ matrix.python-version }}
98+
- name: Debug Python runtime
99+
run: |
100+
python -c "import platform, sys, sysconfig; print(sys.version); print(platform.architecture()); print(sysconfig.get_config_var('EXT_SUFFIX'))"
98101
- name: Install test binary dependencies
99102
if: startsWith(matrix.os, 'ubuntu')
100103
run: |

0 commit comments

Comments
 (0)