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 d87502a  chore(build): Skip Python 3.8 on arm64 macOS (#150)
d87502a is described below

commit d87502a42853eec3da20d0e63d8591c77cd3c292
Author: Junru Shao <[email protected]>
AuthorDate: Thu Oct 16 13:21:54 2025 -0700

    chore(build): Skip Python 3.8 on arm64 macOS (#150)
    
    ARM64 macOS doesn't have native support for Python 3.8. Therefore, it is
    pointless to release Python 3.8 wheels in this case.
---
 .github/workflows/publish_wheel.yml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.github/workflows/publish_wheel.yml 
b/.github/workflows/publish_wheel.yml
index 5979feb..c62e5f1 100644
--- a/.github/workflows/publish_wheel.yml
+++ b/.github/workflows/publish_wheel.yml
@@ -69,6 +69,7 @@ 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 }}
 

Reply via email to