This is an automated email from the ASF dual-hosted git repository.

tqchen pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tvm-ffi.git


The following commit(s) were added to refs/heads/main by this push:
     new 8831e88  chore(build): Properly skip macOS cp38 (#152)
8831e88 is described below

commit 8831e880e93621017ded57ce8639d76ecc5ab82e
Author: Junru Shao <[email protected]>
AuthorDate: Thu Oct 16 13:46:20 2025 -0700

    chore(build): Properly skip macOS cp38 (#152)
---
 .github/workflows/publish_wheel.yml | 1 -
 pyproject.toml                      | 2 +-
 2 files changed, 1 insertion(+), 2 deletions(-)

diff --git a/.github/workflows/publish_wheel.yml 
b/.github/workflows/publish_wheel.yml
index c62e5f1..5979feb 100644
--- a/.github/workflows/publish_wheel.yml
+++ b/.github/workflows/publish_wheel.yml
@@ -69,7 +69,6 @@ jobs:
           CIBW_ARCHS_MACOS: ${{ matrix.arch }}
           CIBW_ARCHS_LINUX: ${{ matrix.arch }}
           CIBW_ARCHS_WINDOWS: ${{ matrix.arch }}
-          CIBW_SKIP: "cp38-macosx_*"
           CIBW_BUILD_VERBOSITY: 1
           CMAKE_BUILD_PARALLEL_LEVEL: ${{ steps.env_vars.outputs.cpu_count }}
 
diff --git a/pyproject.toml b/pyproject.toml
index df55c9e..8d643fa 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -228,7 +228,7 @@ manylinux-aarch64-image = "manylinux2014"
 # will be abi3 and can be used in future versions
 # ship 314t threaded nogil version
 build = ["cp38-*", "cp39-*", "cp310-*", "cp311-*", "cp312-*", "cp314t-*"]
-skip = ["*musllinux*"]
+skip = ["*musllinux*", "cp38-macosx_*"]
 # we only need to test on cp312
 test-skip = ["cp38-*", "cp39-*", "cp310-*", "cp311-*"]
 # focus on testing abi3 wheel

Reply via email to