mirror of
https://github.com/pybind/pybind11.git
synced 2026-03-14 20:27:47 +00:00
* ci: add android test Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com> * Fix Android tests (#23) * Android tests working * Clarifications * ci: only use fork on Android Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com> * ci: add wheel (missing) Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com> * ci: no patchelf? Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com> * ci: forgot pyproject android mention Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com> * Fix GHA configuration * Update to cibuildwheel 3.1 * Restore installation of "wheel" * Revert iOS to cibuildwheel 3.0 * Actually revert iOS back to cibuildwheel 3.0 * Restore iOS to cibuildwheel 3.1, and skip Python 3.14 instead * Update .github/workflows/tests-cibw.yml --------- Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com> Co-authored-by: Malcolm Smith <smith@chaquo.com>
39 lines
1.0 KiB
TOML
39 lines
1.0 KiB
TOML
# Warning: this is currently used to test cross-compilation, and is not a general
|
|
# out-of-tree builder for the tests (yet). Specifically, wheels can't be built from
|
|
# SDists.
|
|
|
|
[build-system]
|
|
requires = ["scikit-build-core"]
|
|
build-backend = "scikit_build_core.build"
|
|
|
|
[project]
|
|
name = "pybind11_tests"
|
|
version = "0.0.1"
|
|
dependencies = ["pytest", "pytest-timeout"]
|
|
|
|
|
|
[dependency-groups]
|
|
numpy = ["numpy"]
|
|
scipy = ["scipy"]
|
|
|
|
|
|
[tool.scikit-build]
|
|
build.verbose = true
|
|
logging.level = "INFO"
|
|
|
|
[tool.scikit-build.cmake.define]
|
|
PYBIND11_FINDPYTHON = true
|
|
|
|
|
|
[tool.cibuildwheel]
|
|
test-sources = ["tests", "pyproject.toml"]
|
|
test-command = "python -m pytest -o timeout=0 -p no:cacheprovider tests"
|
|
environment.PIP_ONLY_BINARY = "numpy"
|
|
environment.PIP_PREFER_BINARY = "1"
|
|
|
|
android.environment.ANDROID_API_LEVEL = "24" # Needed to include libc++ in the wheel.
|
|
pyodide.test-groups = ["numpy", "scipy"]
|
|
ios.test-groups = ["numpy"]
|
|
ios.xbuild-tools = ["cmake", "ninja"]
|
|
ios.environment.PIP_EXTRA_INDEX_URL = "https://pypi.anaconda.org/beeware/simple"
|