We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0352b4c commit c972c99Copy full SHA for c972c99
.github/workflows/ci.yml
@@ -49,7 +49,7 @@ jobs:
49
- name: Check python build
50
run: |
51
uv run --no-project python -c 'import sys; print(sys.prefix); print(sys.version_info)'
52
- uv run --no-project python -c 'import sysconfig; print(f"Py_GIL_DISABLED={sysconfig.get_config_var("Py_GIL_DISABLED")}")'
+ uv run --no-project python -c 'import sysconfig; flag=sysconfig.get_config_var("Py_GIL_DISABLED"); print(f"Py_GIL_DISABLED={flag}")'
53
uv run --no-project python -c 'import sys; print(f"{sys.abiflags=}")'
54
- name: Install dependencies and build the package
55
0 commit comments