Skip to content

Commit

Permalink
Use new "enable" CIBW option
Browse files Browse the repository at this point in the history
The "free_threaded_support" option (and related envvar) has been
deprecated in favour of the more generic "enable" one, where we can
enable the cpython freethreading builds. PyPy builds also have to be
explicitly enabled now, since they are going to be turned off by default
in cibw v3, we have historically supported them, and because a warning
is now issued if they are not explicitly listed in the "enable" option.

Signed-off-by: Rodrigo Tobar <[email protected]>
  • Loading branch information
rtobar committed Nov 26, 2024
1 parent 9b2adcd commit 1d486d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build_and_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
CIBW_ARCHS_MACOS: "x86_64 arm64 universal2"
CIBW_TEST_SKIP: '*macosx_arm64 *universal2:arm64'
CIBW_BUILD_VERBOSITY: 1
CIBW_FREE_THREADED_SUPPORT: 1
CIBW_ENABLE: pypy cpython-freethreading
- uses: actions/upload-artifact@v4
with:
name: wheels-${{ matrix.os }}-${{ matrix.arch }}
Expand Down

0 comments on commit 1d486d4

Please sign in to comment.