We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent efa4453 commit 36a0783Copy full SHA for 36a0783
.github/workflows/ci.yml
@@ -43,9 +43,15 @@ jobs:
43
with:
44
enable-cache: true
45
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
- name: Install dependencies and build the package
52
run: |
53
uv sync --locked --all-extras --no-install-project
54
+ PYO3_PRINT_CONFIG=1 uv run maturin develop 2>&1 || true
55
uv run maturin develop
56
- name: Test
57
0 commit comments