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 6177658 commit 72aff41Copy full SHA for 72aff41
.github/workflows/test.yml
@@ -186,6 +186,11 @@ jobs:
186
pip install -r test-requirements.txt
187
CC=clang MYPYC_OPT_LEVEL=0 MYPY_USE_MYPYC=1 pip install -e .
188
189
+ # delete this when importing lxml.etree no longer re-enables the GIL
190
+ - name: Force-disable GIL in 3.14t tests
191
+ if: ${{ matrix.python == '3.14t' }}
192
+ run: echo "PYTHON_GIL=0" >> "$GITHUB_ENV"
193
+
194
- name: Setup tox environment
195
run: |
196
tox run -e ${{ matrix.toxenv }} --notest
0 commit comments