-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- ποΈ switch to PEP 517 `pyproject.toml` - π π: deploying under macOS now produces fat binaries (i.e., for `x86_64` and `arm64` architectures). This allows to effectively build `universal2` wheels for Python 3.8 onwards and eventually makes the wheels work on M1-based Macs - β¬οΈ updated cibuildwheel to 2.3.0 - ποΈ increase max CMake version to 3.22 - π increase version to 1.7.3
- Loading branch information
1 parent
8f13b50
commit 06da5bc
Showing
5 changed files
with
35 additions
and
28 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
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
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
[build-system] | ||
requires = ["setuptools", "wheel", "cmake"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[tool.cibuildwheel] | ||
build = "cp3*" | ||
skip = "*-win32 *-musllinux_i686 *-manylinux_i686 cp3{8,9,10}-macosx_x86_64" | ||
test-skip = "*_arm64 *_universal2:arm64" | ||
test-command = "python -c \"from jkq import qfr\"" | ||
environment = { DEPLOY = "ON" } | ||
build-verbosity = 3 | ||
|
||
[tool.cibuildwheel.linux] | ||
|
||
[tool.cibuildwheel.macos] | ||
archs = "x86_64 universal2" | ||
environment = { MACOSX_DEPLOYMENT_TARGET = "10.15", DEPLOY = "ON" } | ||
|
||
[tool.cibuildwheel.windows] |
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