File tree Expand file tree Collapse file tree 3 files changed +7
-1
lines changed
Expand file tree Collapse file tree 3 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 1717 name : Build wheels on ${{ matrix.os }}
1818 runs-on : ${{ matrix.os }}
1919 strategy :
20+ fail-fast : false
2021 matrix :
2122 os : [ubuntu-latest, windows-latest, macos-latest]
2223
3031
3132 - name : Install deps
3233 run : |
33- python -m pip install cibuildwheel==3.2.1 abi3audit 0.0.22
34+ python -m pip install cibuildwheel==3.2.1 abi3audit== 0.0.22
3435
3536 - name : Build wheels
3637 run : |
Original file line number Diff line number Diff line change @@ -8,5 +8,6 @@ build-backend = "setuptools.build_meta"
88
99[tool .cibuildwheel ]
1010enable = [" all" ]
11+ # See https://cibuildwheel.pypa.io/en/stable/options/#build-skip
1112# Not sure why it was failing on PyPy 3.11.
1213build = " cp38-* pp310-*"
Original file line number Diff line number Diff line change 11from setuptools import Extension , setup
22from Cython .Build import cythonize
33
4+ # ABI3 example from https://github.com/joerick/python-abi3-package-sample
5+ # Cython docs at
6+ # https://docs.cython.org/en/latest/src/userguide/limited_api.html
7+ #
48# Py_LIMITED_API values:
59#
610# 0x03080000 - Python 3.8 - the minimum version that Cython supports.
You can’t perform that action at this time.
0 commit comments