Skip to content

Commit f35221d

Browse files
committed
ci: Debug python build...
1 parent efa4453 commit f35221d

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/ci.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,19 @@ jobs:
4343
with:
4444
enable-cache: true
4545
python-version: ${{ matrix.python-version }}
46+
- name: Check python build
47+
run: |
48+
uv run --no-project python -c 'import sys; print(sys.prefix); print(sys.version_info)'
49+
uv run --no-project python -c 'import sysconfig; print("Py_GIL_DISABLED=", sysconfig.get_config_var("Py_GIL_DISABLED"))'
50+
uv run --no-project python -c 'import sys; print(f"{sys.abiflags=}")'
51+
which python
52+
python --version
53+
which -a python3.14 || true
54+
which -a python3.14t || true
4655
- name: Install dependencies and build the package
4756
run: |
4857
uv sync --locked --all-extras --no-install-project
58+
PYO3_PRINT_CONFIG=1 uv run maturin develop 2>&1 || true
4959
uv run maturin develop
5060
- name: Test
5161
run: |

0 commit comments

Comments
 (0)