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 fd7f6b2 commit f447c16Copy full SHA for f447c16
.github/workflows/ci-test.yml
@@ -137,6 +137,12 @@ jobs:
137
python -c "import sqlite3; print('sqlite version: ', sqlite3.sqlite_version)"
138
python -c "import setuptools; print('setuptools version: ', setuptools.__version__);"
139
140
+ # from:
141
+ # https://hugovk.dev/blog/2025/free-threaded-python-on-github-actions/
142
+ - name: Set PYTHON_GIL when freethreaded
143
+ if: endsWith(matrix.python-version, 't')
144
+ run: |
145
+ echo "PYTHON_GIL=0" >> "$GITHUB_ENV"
146
- name: Update pip
147
run: python -m pip install --upgrade pip
148
0 commit comments