-
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Build free-threaded wheels, disable limited API there
Co-authored-by: Min RK <[email protected]>
- Loading branch information
Showing
3 changed files
with
14 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,12 +40,14 @@ jobs: | |
- uses: pypa/[email protected] | ||
env: | ||
# Only build CPython 3.9, because we have portable abi3 wheels. | ||
CIBW_BUILD: "cp39-* cp39-win_arm64" | ||
# Only exception are free-threaded builds. | ||
CIBW_BUILD: "cp39-* cp39-win_arm64 cp313t-*" | ||
CIBW_ARCHS_LINUX: "auto aarch64" | ||
CIBW_ARCHS_MACOS: "auto universal2" | ||
CIBW_TEST_COMMAND: python -Ic "from _argon2_cffi_bindings import ffi, lib; print(lib.ARGON2_VERSION_NUMBER)" | ||
# https://github.com/pypa/cibuildwheel/pull/1169 | ||
CIBW_TEST_SKIP: "*-macosx_universal2:arm64" | ||
CIBW_FREE_THREADED_SUPPORT: true | ||
|
||
- uses: actions/upload-artifact@v4 | ||
with: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters