From 2da9783f98b0f60fceec962d5d821fcfa8dc4900 Mon Sep 17 00:00:00 2001 From: Takumasa Nakamura Date: Tue, 30 Jun 2026 13:24:39 +0900 Subject: [PATCH] build with cp39-abi3 --- .github/workflows/ci.yml | 2 +- setup.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 392772b..cdcaa78 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -62,7 +62,7 @@ jobs: - name: Build wheels run: python -m cibuildwheel --output-dir wheelhouse env: - CIBW_BUILD: "cp39-* cp310-* cp311-* cp312-* cp313-*" + CIBW_BUILD: "cp39-*" CIBW_SKIP: "*-win32 *-manylinux_i686 *-musllinux_i686" CIBW_ARCHS_MACOS: "x86_64 arm64" CIBW_ARCHS_LINUX: "x86_64" diff --git a/setup.py b/setup.py index ca5d1e3..92688a3 100644 --- a/setup.py +++ b/setup.py @@ -3,4 +3,5 @@ setup( cffi_modules=["src/multimark/_build_cmark.py:ffi"], + options={"bdist_wheel": {"py_limited_api": "cp39"}}, )