We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3181455 commit 61076a2Copy full SHA for 61076a2
.github/workflows/build.yml
@@ -7,7 +7,7 @@ permissions:
7
8
env:
9
CIBW_BEFORE_BUILD: pip install setuptools oldest-supported-numpy pytest
10
- CIBW_ENVIRONMENT: >
+ CIBW_ENVIRONMENT_LINUX: >
11
IS_FREETHREADED=$(python -c "import sysconfig;print(sysconfig.get_config_var('Py_GIL_DISABLED'))")
12
PYTEST_RUN_PARALLEL=$([ "$IS_FREETHREADED" == "1" ] && echo "pytest-run-parallel" || echo "")
13
PARALLEL_THREADS=$([ "$IS_FREETHREADED" == "1" ] && echo "--parallel-threads=4" || echo "")
@@ -30,7 +30,7 @@ jobs:
30
CIBW_BUILD: ${{ matrix.cibw_build }}
31
CIBW_ARCHS_LINUX: ${{ matrix.arch }}
32
CIBW_ARCHS_MACOS: "x86_64 arm64"
33
- CIBW_ENABLE: true
+ CIBW_ENABLE: cpython-freethreading
34
strategy:
35
matrix:
36
os: [ubuntu-latest, windows-latest, macos-latest]
0 commit comments