Skip to content

Commit f38163e

Browse files
committed
Fix abiaudit version.
1 parent 142f020 commit f38163e

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

.github/workflows/github-deploy.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ jobs:
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

@@ -30,7 +31,7 @@ jobs:
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: |

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,6 @@ build-backend = "setuptools.build_meta"
88

99
[tool.cibuildwheel]
1010
enable = ["all"]
11+
# See https://cibuildwheel.pypa.io/en/stable/options/#build-skip
1112
# Not sure why it was failing on PyPy 3.11.
1213
build = "cp38-* pp310-*"

setup.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
from setuptools import Extension, setup
22
from 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.

0 commit comments

Comments
 (0)