Skip to content

Commit 49742ea

Browse files
committed
try to include free-threaded build
1 parent a20a546 commit 49742ea

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ jobs:
7676
CIBW_BEFORE_BUILD: pip install -r {project}/${{ matrix.python.req_build }}
7777
CIBW_BEFORE_TEST: pip install -r {project}/${{ matrix.python.req_test }}
7878
CIBW_TEST_COMMAND: pytest {project}/test
79-
PYTHON_FREE_THREADING: ${{ matrix.python.free_threading }}
79+
CIBW_ENABLE: ${{ matrix.python.free_threading == '1' && 'cpython-freethreading' || '' }}
8080

8181
- run: pip install pipx
8282
if: matrix.os == 'macos-13-xlarge'
@@ -89,7 +89,7 @@ jobs:
8989
CIBW_BEFORE_BUILD: pip install -r {project}/${{ matrix.python.req_build }}
9090
CIBW_BEFORE_TEST: pip install -r {project}/${{ matrix.python.req_test }}
9191
CIBW_TEST_COMMAND: pytest {project}/test
92-
PYTHON_FREE_THREADING: ${{ matrix.python.free_threading }}
92+
CIBW_ENABLE: ${{ matrix.python.free_threading == '1' && 'cpython-freethreading' || '' }}
9393

9494
- uses: actions/upload-artifact@v4
9595
with:

0 commit comments

Comments
 (0)