From 4340f55bdfcfad3d0f4f29f5ca7ad7e60d0d508f Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 12 May 2024 06:52:06 +0000 Subject: [PATCH 1/2] chore(deps): update pypa/cibuildwheel action to v2.18 --- .github/workflows/build_wheel.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build_wheel.yml b/.github/workflows/build_wheel.yml index b48ebe6..bf1f086 100644 --- a/.github/workflows/build_wheel.yml +++ b/.github/workflows/build_wheel.yml @@ -46,7 +46,7 @@ jobs: - uses: ilammy/setup-nasm@v1 if: matrix.platform_id == 'win_amd64' - name: Build wheels - uses: pypa/cibuildwheel@v2.17 + uses: pypa/cibuildwheel@v2.18 env: CIBW_BUILD_VERBOSITY: 1 CIBW_ARCHS: all From bf3d21455c40416dce58fdeb418ec4f1f2e38d6a Mon Sep 17 00:00:00 2001 From: Jinzhe Zeng Date: Sun, 12 May 2024 04:50:48 -0400 Subject: [PATCH 2/2] set MACOSX_DEPLOYMENT_TARGET to 10.15 --- README.md | 2 +- pyproject.toml | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 5171829..6749303 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ The project is powered by [scikit-build-core](https://github.com/scikit-build/sc | ------- | ------- | --- | -------------- | ----------- | | Linux | x86_64 | 64 | glibc >= 2.17 | v18.18.0 | | Linux | aarch64 | 64 | glibc >= 2.17 | v20.13.0 | -| macOS | x86_64 | 64 | >= macOS-10.9 | v18.18.0 | +| macOS | x86_64 | 64 | >= macOS-10.15 | v18.18.0 | | macOS | arm64 | 64 | >= macOS-11 | v20.11.1 | | Windows | amd64 | 64 | | v18.18.0 | diff --git a/pyproject.toml b/pyproject.toml index 4d50baf..de35504 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -43,6 +43,9 @@ build-verbosity = 1 before-test = ["pip install --no-deps cmd/"] test-command = "node -h && npm --version && npx --version && python -m nodejs_wheel --version && python {project}/tests/test_api.py" +[tool.cibuildwheel.macos.environment] +MACOSX_DEPLOYMENT_TARGET = "10.15" + [tool.ruff.format] docstring-code-format = true